結果

問題 No.1570 Blocks
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-27 13:30:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 93,144 KB
最終ジャッジ日時 2024-06-25 11:26:18
合計ジャッジ時間 14,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 292 ms
87,220 KB
testcase_03 AC 347 ms
90,048 KB
testcase_04 AC 259 ms
85,760 KB
testcase_05 AC 268 ms
86,400 KB
testcase_06 AC 280 ms
86,596 KB
testcase_07 AC 93 ms
76,928 KB
testcase_08 AC 336 ms
89,600 KB
testcase_09 AC 394 ms
91,904 KB
testcase_10 AC 322 ms
88,576 KB
testcase_11 AC 345 ms
90,248 KB
testcase_12 AC 404 ms
92,488 KB
testcase_13 AC 393 ms
92,544 KB
testcase_14 AC 400 ms
92,672 KB
testcase_15 AC 207 ms
83,336 KB
testcase_16 AC 385 ms
92,252 KB
testcase_17 AC 204 ms
82,944 KB
testcase_18 AC 331 ms
89,216 KB
testcase_19 AC 204 ms
83,200 KB
testcase_20 AC 202 ms
83,328 KB
testcase_21 AC 316 ms
88,192 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 39 ms
52,608 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 AC 40 ms
52,608 KB
testcase_26 AC 40 ms
52,480 KB
testcase_27 AC 40 ms
52,608 KB
testcase_28 AC 39 ms
52,992 KB
testcase_29 AC 38 ms
52,096 KB
testcase_30 AC 40 ms
52,352 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 390 ms
92,160 KB
testcase_33 AC 408 ms
92,544 KB
testcase_34 AC 379 ms
91,164 KB
testcase_35 AC 396 ms
92,076 KB
testcase_36 AC 383 ms
91,648 KB
testcase_37 AC 388 ms
91,852 KB
testcase_38 WA -
testcase_39 AC 393 ms
92,672 KB
testcase_40 AC 389 ms
92,136 KB
testcase_41 AC 394 ms
92,456 KB
testcase_42 AC 411 ms
93,144 KB
testcase_43 AC 415 ms
92,800 KB
testcase_44 AC 408 ms
93,016 KB
testcase_45 AC 408 ms
92,800 KB
testcase_46 AC 405 ms
92,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

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[1], x[0]))
if n <= 9:
    for p in permutations(ab, n):
        ok(list(p))

ok(ab)
print("No")
0