結果

問題 No.733 分身並列コーディング
ユーザー vwxyzvwxyz
提出日時 2024-04-06 04:34:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,265 ms / 1,500 ms
コード長 376 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 78,944 KB
最終ジャッジ日時 2024-10-01 03:42:49
合計ジャッジ時間 26,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,760 KB
testcase_01 AC 36 ms
53,196 KB
testcase_02 AC 37 ms
52,400 KB
testcase_03 AC 1,230 ms
78,280 KB
testcase_04 AC 1,265 ms
78,344 KB
testcase_05 AC 719 ms
78,172 KB
testcase_06 AC 37 ms
53,308 KB
testcase_07 AC 764 ms
78,708 KB
testcase_08 AC 735 ms
78,352 KB
testcase_09 AC 467 ms
77,468 KB
testcase_10 AC 96 ms
76,520 KB
testcase_11 AC 96 ms
76,628 KB
testcase_12 AC 38 ms
53,220 KB
testcase_13 AC 38 ms
52,204 KB
testcase_14 AC 221 ms
76,964 KB
testcase_15 AC 83 ms
76,424 KB
testcase_16 AC 38 ms
53,340 KB
testcase_17 AC 44 ms
59,300 KB
testcase_18 AC 92 ms
76,920 KB
testcase_19 AC 474 ms
77,612 KB
testcase_20 AC 489 ms
77,560 KB
testcase_21 AC 219 ms
76,740 KB
testcase_22 AC 1,253 ms
78,568 KB
testcase_23 AC 228 ms
76,920 KB
testcase_24 AC 239 ms
76,728 KB
testcase_25 AC 55 ms
66,324 KB
testcase_26 AC 37 ms
53,096 KB
testcase_27 AC 84 ms
76,656 KB
testcase_28 AC 856 ms
78,504 KB
testcase_29 AC 1,243 ms
78,324 KB
testcase_30 AC 1,232 ms
78,628 KB
testcase_31 AC 1,227 ms
78,348 KB
testcase_32 AC 124 ms
76,592 KB
testcase_33 AC 120 ms
76,832 KB
testcase_34 AC 121 ms
76,408 KB
testcase_35 AC 120 ms
76,680 KB
testcase_36 AC 125 ms
76,716 KB
testcase_37 AC 120 ms
76,448 KB
testcase_38 AC 1,062 ms
78,772 KB
testcase_39 AC 1,102 ms
78,944 KB
testcase_40 AC 1,053 ms
78,456 KB
testcase_41 AC 128 ms
76,576 KB
testcase_42 AC 126 ms
76,564 KB
testcase_43 AC 129 ms
76,672 KB
testcase_44 AC 1,227 ms
78,524 KB
testcase_45 AC 1,229 ms
78,496 KB
testcase_46 AC 1,225 ms
78,496 KB
testcase_47 AC 1,255 ms
78,568 KB
testcase_48 AC 1,232 ms
78,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
N=int(input())
time=[int(input()) for i in range(N)]
inf=1<<30
dp=[inf]*(1<<N)
dp[0]=0
sum_time=[sum(time[i] for i in range(N)if bit&1<<i) for bit in range(1<<N)]
for bit in range(1<<N):
    subset=bit
    while subset:
        if sum_time[subset]<=T:
            dp[bit]=min(dp[bit],dp[bit^subset]+1)
        subset-=1
        subset&=bit
ans=dp[-1]
print(ans)
0