結果

問題 No.1570 Blocks
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-27 14:46:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,360 KB
最終ジャッジ日時 2024-06-25 11:43:17
合計ジャッジ時間 15,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 304 ms
27,008 KB
testcase_03 WA -
testcase_04 AC 269 ms
24,768 KB
testcase_05 AC 287 ms
25,804 KB
testcase_06 WA -
testcase_07 AC 63 ms
12,672 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 339 ms
28,900 KB
testcase_11 AC 369 ms
31,036 KB
testcase_12 WA -
testcase_13 AC 455 ms
34,144 KB
testcase_14 AC 451 ms
34,680 KB
testcase_15 AC 207 ms
21,504 KB
testcase_16 AC 440 ms
34,340 KB
testcase_17 WA -
testcase_18 AC 351 ms
29,860 KB
testcase_19 WA -
testcase_20 AC 206 ms
21,248 KB
testcase_21 WA -
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 31 ms
10,624 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 483 ms
33,784 KB
testcase_33 WA -
testcase_34 AC 426 ms
32,696 KB
testcase_35 WA -
testcase_36 AC 455 ms
33,708 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 462 ms
34,600 KB
testcase_40 AC 452 ms
33,432 KB
testcase_41 WA -
testcase_42 AC 469 ms
35,232 KB
testcase_43 AC 462 ms
35,164 KB
testcase_44 AC 466 ms
35,108 KB
testcase_45 AC 459 ms
35,360 KB
testcase_46 AC 500 ms
34,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ok(ab):
    s = 0
    for i in range(n):
        if s > ab[i][1]:
            break
        else:
            s += ab[i][0]
    else:
        exit(print("Yes"))
n = int(input())
ab = [list(map(int, input().split())) for i in range(n)]
ab.sort(key=lambda x: (x[0] - x[1]))
ok(ab)
print("No")
0