結果

問題 No.2796 Small Matryoshka
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-06-28 21:58:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 89,416 KB
最終ジャッジ日時 2024-06-28 21:58:52
合計ジャッジ時間 6,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,100 KB
testcase_01 AC 31 ms
52,820 KB
testcase_02 AC 31 ms
52,052 KB
testcase_03 AC 31 ms
52,304 KB
testcase_04 WA -
testcase_05 AC 120 ms
77,948 KB
testcase_06 AC 503 ms
86,484 KB
testcase_07 AC 34 ms
53,560 KB
testcase_08 AC 396 ms
84,048 KB
testcase_09 AC 611 ms
89,164 KB
testcase_10 AC 570 ms
89,416 KB
testcase_11 AC 619 ms
89,036 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dolls = []
for i in range(N):
	r, R = map(int, input().split())
	dolls.append((r, R))

dolls.sort()

ans = 0
last = dolls[0]
for i in range(1, N):
	if last[1] > dolls[i][0]:
		ans += 1
	else:
		last = dolls[i]
print(ans)
0