結果

問題 No.733 分身並列コーディング
ユーザー togetogehattogetogehat
提出日時 2018-09-09 18:44:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 63,392 KB
最終ジャッジ日時 2024-06-06 07:56:21
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,624 KB
testcase_01 AC 37 ms
53,356 KB
testcase_02 AC 37 ms
52,408 KB
testcase_03 AC 36 ms
53,428 KB
testcase_04 AC 44 ms
60,180 KB
testcase_05 AC 36 ms
52,216 KB
testcase_06 AC 36 ms
52,760 KB
testcase_07 AC 36 ms
52,388 KB
testcase_08 AC 36 ms
52,724 KB
testcase_09 WA -
testcase_10 AC 45 ms
60,268 KB
testcase_11 AC 42 ms
60,012 KB
testcase_12 AC 42 ms
60,264 KB
testcase_13 AC 42 ms
59,512 KB
testcase_14 AC 43 ms
59,188 KB
testcase_15 AC 43 ms
59,460 KB
testcase_16 AC 44 ms
60,548 KB
testcase_17 AC 44 ms
60,844 KB
testcase_18 AC 41 ms
59,636 KB
testcase_19 AC 45 ms
61,324 KB
testcase_20 WA -
testcase_21 AC 46 ms
60,960 KB
testcase_22 AC 45 ms
61,812 KB
testcase_23 AC 46 ms
60,820 KB
testcase_24 WA -
testcase_25 AC 41 ms
59,656 KB
testcase_26 AC 42 ms
60,064 KB
testcase_27 AC 43 ms
59,732 KB
testcase_28 AC 49 ms
62,976 KB
testcase_29 AC 48 ms
61,768 KB
testcase_30 AC 47 ms
61,676 KB
testcase_31 AC 49 ms
62,696 KB
testcase_32 AC 42 ms
59,008 KB
testcase_33 AC 47 ms
62,160 KB
testcase_34 WA -
testcase_35 AC 40 ms
59,156 KB
testcase_36 AC 44 ms
60,384 KB
testcase_37 AC 35 ms
52,284 KB
testcase_38 AC 46 ms
61,644 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 41 ms
59,492 KB
testcase_43 AC 44 ms
60,972 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 49 ms
61,956 KB
testcase_47 WA -
testcase_48 AC 50 ms
62,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
n = int(input())
a = [int(input()) for _ in range(n)]
v = set()
for r in range(n):
    dp = [-1]*(t+1)
    dp[0] = 0
    for i in range(n):
        if i in v:
            continue
        for j in range(a[i], t+1)[::-1]:
            if dp[j]<0 and dp[j-a[i]]>=0:
                dp[j] = i
    for i in range(t+1)[::-1]:
        if dp[i] >= 0:
            break
    while i > 0:
        v.add(dp[i])
        i -= a[dp[i]]
    if len(v) == n:
        break
print(r+1)
0