結果

問題 No.1570 Blocks
ユーザー 👑 KazunKazun
提出日時 2021-06-27 22:43:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 86,988 KB
最終ジャッジ日時 2024-06-25 11:56:22
合計ジャッジ時間 14,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 280 ms
82,816 KB
testcase_03 AC 351 ms
85,432 KB
testcase_04 AC 261 ms
82,736 KB
testcase_05 AC 272 ms
82,732 KB
testcase_06 AC 281 ms
82,944 KB
testcase_07 AC 96 ms
77,056 KB
testcase_08 AC 338 ms
84,144 KB
testcase_09 AC 393 ms
86,460 KB
testcase_10 AC 319 ms
83,800 KB
testcase_11 AC 347 ms
85,324 KB
testcase_12 AC 410 ms
86,532 KB
testcase_13 AC 400 ms
86,096 KB
testcase_14 AC 402 ms
86,496 KB
testcase_15 AC 211 ms
80,384 KB
testcase_16 AC 405 ms
86,228 KB
testcase_17 AC 200 ms
80,768 KB
testcase_18 AC 334 ms
84,560 KB
testcase_19 AC 199 ms
80,768 KB
testcase_20 AC 206 ms
80,516 KB
testcase_21 AC 310 ms
83,584 KB
testcase_22 AC 42 ms
52,608 KB
testcase_23 AC 42 ms
52,096 KB
testcase_24 AC 42 ms
52,608 KB
testcase_25 AC 42 ms
52,096 KB
testcase_26 AC 42 ms
52,224 KB
testcase_27 AC 42 ms
52,608 KB
testcase_28 AC 42 ms
51,968 KB
testcase_29 AC 41 ms
51,968 KB
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 43 ms
51,968 KB
testcase_32 AC 398 ms
86,592 KB
testcase_33 AC 405 ms
86,592 KB
testcase_34 AC 379 ms
85,456 KB
testcase_35 AC 405 ms
86,204 KB
testcase_36 AC 393 ms
85,964 KB
testcase_37 AC 387 ms
86,976 KB
testcase_38 WA -
testcase_39 AC 407 ms
86,988 KB
testcase_40 AC 399 ms
86,092 KB
testcase_41 AC 401 ms
86,468 KB
testcase_42 AC 415 ms
86,980 KB
testcase_43 AC 435 ms
86,608 KB
testcase_44 AC 415 ms
86,600 KB
testcase_45 AC 411 ms
86,788 KB
testcase_46 AC 407 ms
86,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
Block=[]

for _ in range(N):
    a,b=map(int,input().split())
    Block.append((a,b))

Block.sort(key=lambda t:t[::-1])

X=0
for a,b in Block:
    if X>b:
        exit(print("No"))
    X+=a

print("Yes")
0