結果

問題 No.733 分身並列コーディング
ユーザー りあんりあん
提出日時 2017-08-26 20:43:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 1,500 ms
コード長 506 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 104,744 KB
最終ジャッジ日時 2024-11-25 03:46:33
合計ジャッジ時間 12,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,916 KB
testcase_01 AC 38 ms
52,228 KB
testcase_02 AC 45 ms
59,480 KB
testcase_03 AC 479 ms
104,204 KB
testcase_04 AC 476 ms
104,304 KB
testcase_05 AC 414 ms
103,980 KB
testcase_06 AC 38 ms
52,156 KB
testcase_07 AC 426 ms
104,144 KB
testcase_08 AC 422 ms
104,024 KB
testcase_09 AC 317 ms
89,728 KB
testcase_10 AC 83 ms
77,200 KB
testcase_11 AC 84 ms
77,180 KB
testcase_12 AC 43 ms
59,100 KB
testcase_13 AC 39 ms
53,832 KB
testcase_14 AC 147 ms
82,420 KB
testcase_15 AC 75 ms
74,168 KB
testcase_16 AC 39 ms
53,428 KB
testcase_17 AC 47 ms
60,544 KB
testcase_18 AC 87 ms
77,676 KB
testcase_19 AC 318 ms
89,836 KB
testcase_20 AC 319 ms
89,872 KB
testcase_21 AC 149 ms
83,156 KB
testcase_22 AC 465 ms
103,960 KB
testcase_23 AC 146 ms
82,648 KB
testcase_24 AC 149 ms
82,432 KB
testcase_25 AC 59 ms
67,812 KB
testcase_26 AC 39 ms
53,952 KB
testcase_27 AC 70 ms
74,136 KB
testcase_28 AC 414 ms
104,548 KB
testcase_29 AC 442 ms
104,040 KB
testcase_30 AC 439 ms
104,352 KB
testcase_31 AC 440 ms
103,984 KB
testcase_32 AC 100 ms
79,292 KB
testcase_33 AC 99 ms
79,480 KB
testcase_34 AC 96 ms
79,288 KB
testcase_35 AC 101 ms
79,500 KB
testcase_36 AC 100 ms
79,076 KB
testcase_37 AC 99 ms
79,160 KB
testcase_38 AC 434 ms
104,384 KB
testcase_39 AC 437 ms
104,196 KB
testcase_40 AC 427 ms
103,932 KB
testcase_41 AC 102 ms
79,088 KB
testcase_42 AC 101 ms
79,220 KB
testcase_43 AC 101 ms
79,448 KB
testcase_44 AC 440 ms
104,112 KB
testcase_45 AC 434 ms
104,744 KB
testcase_46 AC 421 ms
104,592 KB
testcase_47 AC 422 ms
104,292 KB
testcase_48 AC 419 ms
104,164 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):
        if ((i >> j) & 1) == 1:
            for k in range(n):
                dp[i][k] = min(dp[i][k], dp[i ^ (1 << j)][k] + t[j])
                if dp[i][k] <= T:
                    dp[i][k + 1] = 0
for i in range(n + 1):
    if dp[-1][i] == 0:
        print(i)
        break
0