結果

問題 No.733 分身並列コーディング
ユーザー りあんりあん
提出日時 2018-09-07 07:47:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 1,500 ms
コード長 525 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 104,728 KB
最終ジャッジ日時 2024-11-25 04:58:10
合計ジャッジ時間 8,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,784 KB
testcase_01 AC 37 ms
52,680 KB
testcase_02 AC 37 ms
53,092 KB
testcase_03 AC 366 ms
104,004 KB
testcase_04 AC 359 ms
104,360 KB
testcase_05 AC 166 ms
104,404 KB
testcase_06 AC 34 ms
52,312 KB
testcase_07 AC 185 ms
104,040 KB
testcase_08 AC 176 ms
104,728 KB
testcase_09 AC 185 ms
89,600 KB
testcase_10 AC 62 ms
74,628 KB
testcase_11 AC 67 ms
77,872 KB
testcase_12 AC 36 ms
53,752 KB
testcase_13 AC 35 ms
53,248 KB
testcase_14 AC 113 ms
82,800 KB
testcase_15 AC 57 ms
70,636 KB
testcase_16 AC 38 ms
52,664 KB
testcase_17 AC 41 ms
59,496 KB
testcase_18 AC 60 ms
73,892 KB
testcase_19 AC 160 ms
89,648 KB
testcase_20 AC 169 ms
89,904 KB
testcase_21 AC 112 ms
83,112 KB
testcase_22 AC 279 ms
104,056 KB
testcase_23 AC 106 ms
82,840 KB
testcase_24 AC 110 ms
82,640 KB
testcase_25 AC 57 ms
65,428 KB
testcase_26 AC 38 ms
52,772 KB
testcase_27 AC 58 ms
71,716 KB
testcase_28 AC 190 ms
104,452 KB
testcase_29 AC 221 ms
103,992 KB
testcase_30 AC 243 ms
104,124 KB
testcase_31 AC 234 ms
104,448 KB
testcase_32 AC 74 ms
79,500 KB
testcase_33 AC 75 ms
79,052 KB
testcase_34 AC 79 ms
79,232 KB
testcase_35 AC 80 ms
79,200 KB
testcase_36 AC 75 ms
79,304 KB
testcase_37 AC 79 ms
79,416 KB
testcase_38 AC 223 ms
104,256 KB
testcase_39 AC 209 ms
104,000 KB
testcase_40 AC 209 ms
104,180 KB
testcase_41 AC 75 ms
79,428 KB
testcase_42 AC 79 ms
79,024 KB
testcase_43 AC 78 ms
79,224 KB
testcase_44 AC 207 ms
104,016 KB
testcase_45 AC 227 ms
104,200 KB
testcase_46 AC 235 ms
104,188 KB
testcase_47 AC 216 ms
104,036 KB
testcase_48 AC 213 ms
104,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 1000000007
T = int(input())
n = int(input())
t = [int(input()) for i in range(n)]
dp = [[M for j in range(n + 1)] for i in range(1 << n)]
dp[0] = [0 for i in range(n + 1)]
for i in range(1, 1 << n):
    for j in range(n + 1):
        if j > 0 and dp[i][j - 1] <= T:
            dp[i][j] = 0
            continue
        for k in range(n):
            if ((i >> k) & 1) == 1:
                dp[i][j] = min(dp[i][j], dp[i ^ (1 << k)][j] + t[k])
for i in range(n + 1):
    if dp[-1][i] == 0:
        print(i)
        break
0