結果

問題 No.2796 Small Matryoshka
ユーザー rlangevinrlangevin
提出日時 2024-06-30 16:37:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 89,672 KB
最終ジャッジ日時 2024-06-30 16:37:53
合計ジャッジ時間 7,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 36 ms
53,160 KB
testcase_02 AC 37 ms
52,132 KB
testcase_03 AC 36 ms
52,404 KB
testcase_04 WA -
testcase_05 AC 137 ms
78,436 KB
testcase_06 AC 584 ms
86,732 KB
testcase_07 AC 39 ms
53,776 KB
testcase_08 AC 470 ms
84,048 KB
testcase_09 AC 725 ms
89,152 KB
testcase_10 AC 713 ms
89,672 KB
testcase_11 AC 692 ms
89,152 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())
D = []
for i in range(N):
    l, r = map(int, input().split())
    D.append((r, l))
    
now = 0
D.sort()
ans = N
for r, l in D:
    if l >= now:
        now = r
        ans -= 1
        
print(ans)        
0