結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,008 KB
testcase_01 AC 29 ms
52,072 KB
testcase_02 AC 141 ms
79,804 KB
testcase_03 WA -
testcase_04 AC 130 ms
79,348 KB
testcase_05 AC 126 ms
79,104 KB
testcase_06 WA -
testcase_07 AC 61 ms
74,188 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 146 ms
81,020 KB
testcase_11 AC 165 ms
80,972 KB
testcase_12 WA -
testcase_13 AC 173 ms
81,104 KB
testcase_14 AC 198 ms
85,716 KB
testcase_15 AC 106 ms
79,228 KB
testcase_16 AC 176 ms
81,232 KB
testcase_17 WA -
testcase_18 AC 150 ms
80,952 KB
testcase_19 WA -
testcase_20 AC 110 ms
79,104 KB
testcase_21 WA -
testcase_22 AC 33 ms
52,052 KB
testcase_23 AC 34 ms
53,520 KB
testcase_24 AC 33 ms
53,568 KB
testcase_25 AC 33 ms
52,816 KB
testcase_26 AC 33 ms
52,556 KB
testcase_27 AC 34 ms
52,596 KB
testcase_28 AC 30 ms
52,888 KB
testcase_29 AC 30 ms
53,072 KB
testcase_30 AC 33 ms
52,888 KB
testcase_31 AC 31 ms
52,912 KB
testcase_32 AC 176 ms
81,468 KB
testcase_33 WA -
testcase_34 AC 172 ms
81,056 KB
testcase_35 WA -
testcase_36 AC 178 ms
80,848 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 180 ms
80,976 KB
testcase_40 AC 170 ms
81,360 KB
testcase_41 WA -
testcase_42 AC 190 ms
84,304 KB
testcase_43 AC 188 ms
84,252 KB
testcase_44 AC 186 ms
83,924 KB
testcase_45 AC 187 ms
84,180 KB
testcase_46 AC 177 ms
81,084 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[0])
cur = 0
for a, b in AB:
    if b < cur:
        print('No')
        exit()
    cur += a
print('Yes')
0