結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 299 ms
26,992 KB
testcase_03 WA -
testcase_04 AC 252 ms
24,880 KB
testcase_05 AC 261 ms
25,792 KB
testcase_06 WA -
testcase_07 AC 63 ms
12,800 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 319 ms
29,036 KB
testcase_11 AC 349 ms
31,160 KB
testcase_12 WA -
testcase_13 AC 405 ms
34,008 KB
testcase_14 AC 411 ms
34,676 KB
testcase_15 AC 198 ms
21,372 KB
testcase_16 AC 410 ms
34,456 KB
testcase_17 WA -
testcase_18 AC 334 ms
30,000 KB
testcase_19 WA -
testcase_20 AC 191 ms
21,248 KB
testcase_21 WA -
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 424 ms
33,952 KB
testcase_33 WA -
testcase_34 AC 398 ms
32,816 KB
testcase_35 WA -
testcase_36 AC 406 ms
33,700 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 423 ms
34,724 KB
testcase_40 AC 403 ms
33,544 KB
testcase_41 WA -
testcase_42 AC 434 ms
35,160 KB
testcase_43 AC 432 ms
35,156 KB
testcase_44 AC 430 ms
35,228 KB
testcase_45 AC 438 ms
35,160 KB
testcase_46 AC 455 ms
35,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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