結果

問題 No.1570 Blocks
ユーザー rlangevinrlangevin
提出日時 2023-05-03 12:54:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 81,896 KB
最終ジャッジ日時 2024-11-21 17:50:44
合計ジャッジ時間 10,884 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 204 ms
80,632 KB
testcase_03 AC 251 ms
81,688 KB
testcase_04 AC 182 ms
80,052 KB
testcase_05 AC 191 ms
79,744 KB
testcase_06 AC 195 ms
80,088 KB
testcase_07 AC 64 ms
76,024 KB
testcase_08 AC 243 ms
81,520 KB
testcase_09 AC 277 ms
81,280 KB
testcase_10 AC 228 ms
81,500 KB
testcase_11 AC 245 ms
81,280 KB
testcase_12 AC 285 ms
81,612 KB
testcase_13 AC 280 ms
81,280 KB
testcase_14 AC 287 ms
81,476 KB
testcase_15 AC 144 ms
78,336 KB
testcase_16 AC 285 ms
81,664 KB
testcase_17 AC 141 ms
78,464 KB
testcase_18 AC 233 ms
81,280 KB
testcase_19 AC 141 ms
78,056 KB
testcase_20 AC 143 ms
78,188 KB
testcase_21 AC 216 ms
80,640 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 34 ms
52,352 KB
testcase_24 AC 36 ms
52,224 KB
testcase_25 AC 34 ms
52,480 KB
testcase_26 AC 34 ms
52,608 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 35 ms
52,480 KB
testcase_29 AC 39 ms
51,840 KB
testcase_30 AC 35 ms
51,968 KB
testcase_31 AC 34 ms
52,096 KB
testcase_32 AC 283 ms
81,896 KB
testcase_33 AC 290 ms
81,256 KB
testcase_34 AC 268 ms
81,444 KB
testcase_35 AC 284 ms
81,684 KB
testcase_36 AC 277 ms
81,408 KB
testcase_37 AC 274 ms
81,884 KB
testcase_38 AC 279 ms
81,536 KB
testcase_39 AC 286 ms
81,280 KB
testcase_40 AC 278 ms
81,532 KB
testcase_41 AC 283 ms
81,480 KB
testcase_42 AC 292 ms
81,664 KB
testcase_43 AC 291 ms
81,272 KB
testcase_44 AC 291 ms
81,536 KB
testcase_45 AC 292 ms
81,296 KB
testcase_46 AC 293 ms
81,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N = int(readline())
D = []
now = 0
for i in range(N):
    A, B = map(int, readline().split())
    D.append((A + B, A))
    now += A

D.sort()
while D:
    if D[-1][0] >= now:
        _, A = D.pop()
        now -= A
    else:
        break
    
print("No") if D else print("Yes")
0