結果

問題 No.1570 Blocks
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-14 10:31:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 86,996 KB
最終ジャッジ日時 2024-09-17 16:31:11
合計ジャッジ時間 11,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,232 KB
testcase_01 AC 32 ms
51,896 KB
testcase_02 AC 219 ms
83,560 KB
testcase_03 AC 262 ms
85,428 KB
testcase_04 AC 192 ms
82,392 KB
testcase_05 AC 201 ms
82,696 KB
testcase_06 AC 205 ms
82,748 KB
testcase_07 AC 74 ms
76,892 KB
testcase_08 AC 248 ms
84,144 KB
testcase_09 AC 312 ms
86,320 KB
testcase_10 AC 249 ms
83,408 KB
testcase_11 AC 266 ms
84,948 KB
testcase_12 AC 299 ms
86,572 KB
testcase_13 AC 291 ms
86,488 KB
testcase_14 AC 305 ms
86,356 KB
testcase_15 AC 153 ms
80,268 KB
testcase_16 AC 300 ms
86,484 KB
testcase_17 AC 150 ms
81,220 KB
testcase_18 AC 254 ms
84,052 KB
testcase_19 AC 152 ms
80,756 KB
testcase_20 AC 152 ms
80,480 KB
testcase_21 AC 232 ms
83,892 KB
testcase_22 AC 33 ms
52,608 KB
testcase_23 AC 31 ms
53,008 KB
testcase_24 AC 31 ms
53,092 KB
testcase_25 AC 31 ms
52,168 KB
testcase_26 AC 31 ms
52,132 KB
testcase_27 AC 31 ms
52,856 KB
testcase_28 AC 31 ms
53,800 KB
testcase_29 AC 32 ms
52,868 KB
testcase_30 AC 34 ms
51,944 KB
testcase_31 AC 31 ms
53,244 KB
testcase_32 AC 302 ms
86,452 KB
testcase_33 AC 312 ms
86,964 KB
testcase_34 AC 282 ms
85,708 KB
testcase_35 AC 307 ms
86,708 KB
testcase_36 AC 293 ms
86,480 KB
testcase_37 AC 293 ms
86,152 KB
testcase_38 WA -
testcase_39 AC 311 ms
86,996 KB
testcase_40 AC 296 ms
86,604 KB
testcase_41 AC 308 ms
86,572 KB
testcase_42 AC 315 ms
86,484 KB
testcase_43 AC 315 ms
86,224 KB
testcase_44 AC 318 ms
86,612 KB
testcase_45 AC 307 ms
86,096 KB
testcase_46 AC 309 ms
86,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
total = 0
AB = []
for i in range(n):
    a, b = map(int, input().split())
    AB.append((a, b))
    total += a
AB.sort(key=lambda x:(-x[1], -x[0]))
for a, b in AB:
    if b < total-a:
        print('No')
        exit()
    total -= a
print('Yes')
0