結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 39 ms
51,456 KB
testcase_05 AC 151 ms
80,384 KB
testcase_06 AC 791 ms
102,464 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 571 ms
96,768 KB
testcase_09 AC 1,525 ms
119,012 KB
testcase_10 AC 1,456 ms
120,336 KB
testcase_11 AC 1,781 ms
119,448 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 #

from bisect import*
(n,),*e=[[*map(int,s.split())]for s in open(0)]
p=[0]
for r,R in sorted(e):
  i=bisect_right(p,r)-1
  if 0<=i<len(p):
    p[i]=R
  else:
    insort(p,R)
print(len(p)-1)
0