結果
問題 | No.2796 Small Matryoshka |
ユーザー | KDKJ |
提出日時 | 2024-06-28 23:02:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 422 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 100,680 KB |
最終ジャッジ日時 | 2024-06-28 23:03:07 |
合計ジャッジ時間 | 5,954 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
51,968 KB |
testcase_01 | AC | 32 ms
52,224 KB |
testcase_02 | AC | 32 ms
52,096 KB |
testcase_03 | AC | 32 ms
52,096 KB |
testcase_04 | WA | - |
testcase_05 | AC | 104 ms
79,232 KB |
testcase_06 | AC | 361 ms
99,036 KB |
testcase_07 | AC | 38 ms
52,608 KB |
testcase_08 | AC | 323 ms
91,728 KB |
testcase_09 | AC | 485 ms
100,096 KB |
testcase_10 | AC | 518 ms
100,032 KB |
testcase_11 | AC | 484 ms
100,680 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 | - |
ソースコード
def main(): N = int(input()) array = [list(map(int,input().split())) for _ in range(N)] array.sort(key = lambda x:x[1], reverse=True) array.sort(key = lambda x:x[0], reverse=True) ans = 0 now = array[0][0] #print(array) for r,R in array[1:]: if R <= now: now = r else: ans += 1 print(ans) if __name__ == '__main__': main()