結果

問題 No.27 板の準備
ユーザー kohei2019kohei2019
提出日時 2021-02-10 17:53:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 553 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,736 KB
最終ジャッジ日時 2024-07-08 04:21:52
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
76,380 KB
testcase_01 AC 87 ms
76,356 KB
testcase_02 AC 92 ms
76,728 KB
testcase_03 AC 99 ms
76,444 KB
testcase_04 AC 88 ms
76,224 KB
testcase_05 AC 96 ms
76,616 KB
testcase_06 AC 90 ms
76,496 KB
testcase_07 AC 92 ms
76,568 KB
testcase_08 AC 88 ms
76,244 KB
testcase_09 AC 89 ms
76,728 KB
testcase_10 AC 88 ms
76,364 KB
testcase_11 AC 99 ms
76,084 KB
testcase_12 AC 97 ms
76,208 KB
testcase_13 AC 94 ms
76,472 KB
testcase_14 AC 90 ms
76,700 KB
testcase_15 AC 97 ms
76,468 KB
testcase_16 AC 94 ms
76,736 KB
testcase_17 AC 98 ms
76,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lsV = list(map(int,input().split()))
#30**3で全探索A,B,C
#A,B,CをつかってVを作るDP
ans = float('INF')
for i in range(1,29):
    for j in range(i+1,30):
        for k in range(j+1,31):
            dp = [float('INF')]*(30+1)
            dp[0] = 0
            lsABC = [i,j,k]
            for l in lsABC:
                for m in range(31):
                    if m+l < 31:
                        dp[m+l] = min(dp[m+l],dp[m]+1)
            cnt = 0
            for V in lsV:
                cnt += dp[V]
            ans = min(cnt,ans)
print(ans)
0