結果

問題 No.1570 Blocks
ユーザー KudeKude
提出日時 2021-06-27 13:06:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 92,052 KB
最終ジャッジ日時 2024-06-25 11:19:48
合計ジャッジ時間 11,327 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 221 ms
86,272 KB
testcase_03 AC 276 ms
88,092 KB
testcase_04 AC 204 ms
84,352 KB
testcase_05 AC 205 ms
85,248 KB
testcase_06 AC 213 ms
85,556 KB
testcase_07 AC 87 ms
76,936 KB
testcase_08 AC 261 ms
87,828 KB
testcase_09 AC 301 ms
90,644 KB
testcase_10 AC 243 ms
87,808 KB
testcase_11 AC 251 ms
89,280 KB
testcase_12 AC 303 ms
92,052 KB
testcase_13 AC 288 ms
91,520 KB
testcase_14 AC 298 ms
91,520 KB
testcase_15 AC 167 ms
81,920 KB
testcase_16 AC 288 ms
91,412 KB
testcase_17 AC 161 ms
82,176 KB
testcase_18 AC 248 ms
87,608 KB
testcase_19 AC 161 ms
82,176 KB
testcase_20 AC 164 ms
82,284 KB
testcase_21 AC 241 ms
85,888 KB
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 43 ms
51,968 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 39 ms
52,608 KB
testcase_28 AC 38 ms
52,480 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 38 ms
52,096 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 283 ms
91,800 KB
testcase_33 AC 300 ms
92,048 KB
testcase_34 AC 277 ms
89,088 KB
testcase_35 AC 293 ms
91,668 KB
testcase_36 AC 286 ms
91,040 KB
testcase_37 AC 289 ms
90,644 KB
testcase_38 AC 300 ms
90,644 KB
testcase_39 AC 294 ms
91,520 KB
testcase_40 AC 283 ms
91,476 KB
testcase_41 AC 302 ms
91,548 KB
testcase_42 AC 307 ms
91,036 KB
testcase_43 AC 302 ms
90,992 KB
testcase_44 AC 305 ms
90,988 KB
testcase_45 AC 307 ms
91,264 KB
testcase_46 AC 298 ms
91,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ab = sorted((tuple(map(int, input().split())) for _ in range(n)), key=lambda p: sum(p))
ok = True
now = 0
for a, b in ab:
    if now > b:
        ok = False
        break
    now += a
print('Yes' if ok else 'No')
0