結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 44 ms
58,624 KB
testcase_03 AC 488 ms
104,064 KB
testcase_04 AC 481 ms
104,576 KB
testcase_05 AC 423 ms
104,220 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 430 ms
104,704 KB
testcase_08 AC 430 ms
104,144 KB
testcase_09 AC 321 ms
89,344 KB
testcase_10 AC 85 ms
77,432 KB
testcase_11 AC 86 ms
77,312 KB
testcase_12 AC 45 ms
58,880 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 150 ms
82,944 KB
testcase_15 AC 76 ms
74,112 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 48 ms
60,800 KB
testcase_18 AC 90 ms
77,416 KB
testcase_19 AC 316 ms
89,600 KB
testcase_20 AC 321 ms
89,472 KB
testcase_21 AC 153 ms
82,560 KB
testcase_22 AC 470 ms
103,936 KB
testcase_23 AC 151 ms
82,804 KB
testcase_24 AC 151 ms
82,304 KB
testcase_25 AC 64 ms
66,944 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 74 ms
74,368 KB
testcase_28 AC 431 ms
104,368 KB
testcase_29 AC 464 ms
104,040 KB
testcase_30 AC 454 ms
103,924 KB
testcase_31 AC 451 ms
104,080 KB
testcase_32 AC 101 ms
79,184 KB
testcase_33 AC 102 ms
79,232 KB
testcase_34 AC 103 ms
79,172 KB
testcase_35 AC 103 ms
79,576 KB
testcase_36 AC 103 ms
79,236 KB
testcase_37 AC 103 ms
79,104 KB
testcase_38 AC 440 ms
104,312 KB
testcase_39 AC 444 ms
104,400 KB
testcase_40 AC 445 ms
104,064 KB
testcase_41 AC 104 ms
78,976 KB
testcase_42 AC 105 ms
79,232 KB
testcase_43 AC 104 ms
79,232 KB
testcase_44 AC 445 ms
104,320 KB
testcase_45 AC 446 ms
104,064 KB
testcase_46 AC 446 ms
103,936 KB
testcase_47 AC 446 ms
104,312 KB
testcase_48 AC 446 ms
104,272 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