結果

問題 No.1570 Blocks
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-27 13:21:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-06-25 11:22:58
合計ジャッジ時間 16,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 325 ms
23,936 KB
testcase_03 WA -
testcase_04 AC 291 ms
22,272 KB
testcase_05 AC 310 ms
22,912 KB
testcase_06 WA -
testcase_07 AC 67 ms
12,544 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 379 ms
25,856 KB
testcase_11 AC 404 ms
27,264 KB
testcase_12 WA -
testcase_13 AC 497 ms
29,696 KB
testcase_14 AC 513 ms
30,456 KB
testcase_15 AC 224 ms
19,584 KB
testcase_16 AC 512 ms
30,040 KB
testcase_17 WA -
testcase_18 AC 396 ms
26,496 KB
testcase_19 WA -
testcase_20 AC 223 ms
19,328 KB
testcase_21 WA -
testcase_22 AC 28 ms
10,496 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,496 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 29 ms
10,624 KB
testcase_32 AC 494 ms
29,772 KB
testcase_33 WA -
testcase_34 AC 467 ms
28,928 KB
testcase_35 WA -
testcase_36 AC 476 ms
29,384 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 505 ms
30,336 KB
testcase_40 AC 482 ms
29,568 KB
testcase_41 WA -
testcase_42 AC 533 ms
30,848 KB
testcase_43 AC 515 ms
30,720 KB
testcase_44 AC 516 ms
30,976 KB
testcase_45 AC 521 ms
30,848 KB
testcase_46 AC 530 ms
30,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ab = [list(map(int, input().split())) for i in range(n)]
ab.sort()
s = 0
for i in range(n):
    if s > ab[i][1]:
        exit(print("No"))
    else:
        s += ab[i][0]
print("Yes")
0