結果

問題 No.1570 Blocks
ユーザー 👑 rin204rin204
提出日時 2022-03-21 21:19:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 91,192 KB
最終ジャッジ日時 2024-10-09 12:03:36
合計ジャッジ時間 11,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 182 ms
82,560 KB
testcase_03 AC 221 ms
85,376 KB
testcase_04 AC 176 ms
83,840 KB
testcase_05 AC 175 ms
82,944 KB
testcase_06 AC 182 ms
82,916 KB
testcase_07 AC 83 ms
76,672 KB
testcase_08 AC 213 ms
84,736 KB
testcase_09 AC 241 ms
86,632 KB
testcase_10 AC 208 ms
86,548 KB
testcase_11 AC 215 ms
84,608 KB
testcase_12 AC 253 ms
87,296 KB
testcase_13 AC 238 ms
86,528 KB
testcase_14 AC 249 ms
86,912 KB
testcase_15 AC 144 ms
81,280 KB
testcase_16 AC 240 ms
86,812 KB
testcase_17 AC 146 ms
82,756 KB
testcase_18 AC 208 ms
84,736 KB
testcase_19 AC 150 ms
82,304 KB
testcase_20 AC 143 ms
80,512 KB
testcase_21 AC 198 ms
83,456 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 40 ms
52,736 KB
testcase_24 AC 46 ms
52,352 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 AC 41 ms
51,968 KB
testcase_27 AC 40 ms
52,096 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 39 ms
52,012 KB
testcase_30 AC 38 ms
52,096 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 256 ms
89,320 KB
testcase_33 AC 249 ms
86,912 KB
testcase_34 AC 232 ms
85,184 KB
testcase_35 AC 257 ms
87,992 KB
testcase_36 AC 241 ms
86,528 KB
testcase_37 AC 238 ms
85,120 KB
testcase_38 AC 255 ms
91,192 KB
testcase_39 AC 244 ms
86,528 KB
testcase_40 AC 248 ms
87,168 KB
testcase_41 AC 249 ms
87,168 KB
testcase_42 AC 246 ms
86,624 KB
testcase_43 AC 246 ms
86,504 KB
testcase_44 AC 241 ms
86,752 KB
testcase_45 AC 244 ms
87,064 KB
testcase_46 AC 243 ms
86,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ab = [list(map(int, input().split())) for _ in range(n)]
ab.sort(key = lambda x:x[0] + x[1])

tot = 0
for a, b in ab:
    if tot > b:
        print("No")
        exit()
    tot += a
print("Yes")
0