結果

問題 No.2796 Small Matryoshka
ユーザー KudeKude
提出日時 2024-06-28 23:06:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 92,048 KB
最終ジャッジ日時 2024-06-28 23:06:35
合計ジャッジ時間 3,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,468 KB
testcase_01 AC 31 ms
52,728 KB
testcase_02 AC 35 ms
51,996 KB
testcase_03 AC 35 ms
52,004 KB
testcase_04 AC 42 ms
52,988 KB
testcase_05 AC 81 ms
78,828 KB
testcase_06 AC 192 ms
89,232 KB
testcase_07 AC 35 ms
54,432 KB
testcase_08 AC 167 ms
86,364 KB
testcase_09 AC 207 ms
92,048 KB
testcase_10 AC 205 ms
91,664 KB
testcase_11 AC 224 ms
91,920 KB
testcase_12 AC 122 ms
83,160 KB
testcase_13 AC 69 ms
76,036 KB
testcase_14 AC 121 ms
82,644 KB
testcase_15 AC 74 ms
77,492 KB
testcase_16 AC 87 ms
79,888 KB
testcase_17 AC 190 ms
84,748 KB
testcase_18 AC 168 ms
86,028 KB
testcase_19 AC 94 ms
80,304 KB
testcase_20 AC 108 ms
80,248 KB
testcase_21 AC 158 ms
85,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
r = []
R = []
for _ in range(n):
    ri, Ri = map(int, input().split())
    r.append(ri)
    R.append(Ri)
r.sort(reverse=True)
R.sort()
ans = n - 1
for Ri in R:
    while r and r[-1] < Ri:
        r.pop()
    if r:
        ans -= 1
        r.pop()
print(ans)
0