結果

問題 No.2796 Small Matryoshka
ユーザー tassei903tassei903
提出日時 2024-06-28 23:19:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 171,084 KB
最終ジャッジ日時 2024-06-28 23:19:26
合計ジャッジ時間 8,677 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,188 KB
testcase_01 AC 34 ms
52,068 KB
testcase_02 AC 33 ms
52,300 KB
testcase_03 AC 37 ms
51,824 KB
testcase_04 WA -
testcase_05 AC 153 ms
88,836 KB
testcase_06 AC 762 ms
153,440 KB
testcase_07 AC 35 ms
53,500 KB
testcase_08 AC 551 ms
135,064 KB
testcase_09 AC 848 ms
170,820 KB
testcase_10 AC 856 ms
170,704 KB
testcase_11 AC 841 ms
171,084 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())
AB = [map(int, input().split()) for _ in range(N)]
A, B = [list(i) for i in zip(*AB)]

zip_lists = zip(B,A)
zip_sort = sorted(zip_lists)
B,A = zip(*zip_sort)

prev_f = 0
cnt = 0
for i in range(N):
  if prev_f <= A[i]:
    prev_f = B[i]
    cnt += 1
print(N-cnt)
0