結果

問題 No.1570 Blocks
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-14 10:40:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,968 KB
最終ジャッジ日時 2024-09-17 16:31:37
合計ジャッジ時間 9,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 164 ms
79,760 KB
testcase_03 AC 197 ms
80,896 KB
testcase_04 AC 152 ms
79,248 KB
testcase_05 AC 157 ms
79,308 KB
testcase_06 AC 159 ms
79,232 KB
testcase_07 AC 75 ms
74,368 KB
testcase_08 AC 189 ms
81,080 KB
testcase_09 AC 214 ms
81,216 KB
testcase_10 AC 183 ms
81,024 KB
testcase_11 AC 199 ms
80,900 KB
testcase_12 AC 219 ms
81,220 KB
testcase_13 AC 221 ms
80,968 KB
testcase_14 AC 238 ms
85,968 KB
testcase_15 AC 128 ms
79,232 KB
testcase_16 AC 212 ms
81,108 KB
testcase_17 AC 136 ms
81,024 KB
testcase_18 AC 183 ms
80,980 KB
testcase_19 AC 133 ms
80,832 KB
testcase_20 AC 129 ms
79,168 KB
testcase_21 AC 179 ms
80,860 KB
testcase_22 AC 39 ms
51,584 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 41 ms
51,840 KB
testcase_25 AC 40 ms
51,840 KB
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 40 ms
52,096 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 39 ms
51,840 KB
testcase_30 AC 39 ms
51,584 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 211 ms
81,600 KB
testcase_33 AC 219 ms
81,220 KB
testcase_34 AC 209 ms
80,992 KB
testcase_35 AC 224 ms
81,224 KB
testcase_36 AC 217 ms
80,896 KB
testcase_37 AC 210 ms
81,224 KB
testcase_38 AC 211 ms
81,476 KB
testcase_39 AC 218 ms
81,152 KB
testcase_40 AC 210 ms
81,364 KB
testcase_41 AC 214 ms
81,480 KB
testcase_42 AC 238 ms
84,048 KB
testcase_43 AC 238 ms
84,180 KB
testcase_44 AC 241 ms
84,568 KB
testcase_45 AC 240 ms
84,148 KB
testcase_46 AC 223 ms
81,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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