243日目-BOJ no.7568
3303 ワード
https://www.acmicpc.net/problem/7568
My Solution
import sys
n = int(sys.stdin.readline().rstrip())
arr = []
for _ in range(n):
temp = list(map(int, sys.stdin.readline().rstrip().split()))
arr.append(temp)
for i in arr:
cnt = 1
for j in arr:
if i[0] < j[0] and i[1] < j[1]:
cnt += 1
print(cnt)
Reference
この問題について(243日目-BOJ no.7568), 我々は、より多くの情報をここで見つけました https://velog.io/@vivala0519/243일차-BOJ-no.7568テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol