結果

問題 No.2796 Small Matryoshka
ユーザー moon17moon17
提出日時 2024-06-28 22:24:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 253 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 335,320 KB
最終ジャッジ日時 2024-06-28 22:24:20
合計ジャッジ時間 5,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,088 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 44 ms
51,968 KB
testcase_04 AC 40 ms
51,456 KB
testcase_05 AC 145 ms
82,560 KB
testcase_06 AC 647 ms
117,524 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 491 ms
108,160 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
nr=[]
while rs:
  l=0
  for r,R in rs:
    if l<=r:
      l=R
    else:
      nr+=(r,R),
    # print(R,r,rs,nr)
  if nr:
    ans+=1
  rs,nr=nr,[]
print(ans)
0