結果

問題 No.2796 Small Matryoshka
ユーザー moon17moon17
提出日時 2024-06-28 22:12:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 379,812 KB
最終ジャッジ日時 2024-06-28 22:12:27
合計ジャッジ時間 5,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
56,960 KB
testcase_01 AC 37 ms
51,200 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 WA -
testcase_05 AC 128 ms
81,920 KB
testcase_06 AC 585 ms
117,144 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 475 ms
108,028 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

(n,),*e=[[*map(int,s.split())]for s in open(0)]
rs=[]
for r,R in e:
  rs+=(R,r),
rs.sort()
ans=0
while rs:
  nr=[]
  l=0
  for R,r in rs:
    if l<=r:
      l=R
    else:
      nr+=(R,r),
  if nr:
    ans+=1
  rs=[i[:]for i in nr]
print(ans)
0