結果

問題 No.2796 Small Matryoshka
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-30 00:12:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 88,908 KB
最終ジャッジ日時 2024-10-30 00:12:13
合計ジャッジ時間 7,211 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,820 KB
testcase_01 AC 35 ms
52,740 KB
testcase_02 AC 35 ms
52,568 KB
testcase_03 AC 36 ms
52,940 KB
testcase_04 WA -
testcase_05 AC 106 ms
77,712 KB
testcase_06 AC 346 ms
86,916 KB
testcase_07 AC 38 ms
52,952 KB
testcase_08 AC 270 ms
84,052 KB
testcase_09 AC 265 ms
88,092 KB
testcase_10 AC 412 ms
88,908 KB
testcase_11 AC 386 ms
88,784 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 #

## https://yukicoder.me/problems/no/2796

MAX_INT = 10 ** 18

def main():
    N = int(input())
    rR = []
    for _ in range(N):
        r, R = map(int, input().split())
        rR.append((r, R))
    
    rR.sort(key=lambda x : x[0], reverse=True)

    ans = 0
    min_r = MAX_INT
    for r, R in rR:
        if min_r >= R:
            ans += 1
            min_r = r
    
    print(N - ans)



    



if __name__ == "__main__":
    main()
0