結果

問題 No.27 板の準備
ユーザー chocoruskchocorusk
提出日時 2020-09-08 11:04:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 518 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-29 11:49:50
合計ジャッジ時間 2,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 140 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 84 ms
10,624 KB
testcase_05 AC 52 ms
10,624 KB
testcase_06 AC 90 ms
10,624 KB
testcase_07 AC 147 ms
10,624 KB
testcase_08 AC 155 ms
10,752 KB
testcase_09 AC 141 ms
10,752 KB
testcase_10 AC 124 ms
10,752 KB
testcase_11 AC 63 ms
10,752 KB
testcase_12 AC 87 ms
10,752 KB
testcase_13 AC 78 ms
10,752 KB
testcase_14 AC 57 ms
10,752 KB
testcase_15 AC 129 ms
10,624 KB
testcase_16 AC 34 ms
10,624 KB
testcase_17 AC 173 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

v=list(map(int, input().split()))
m=max(v)
INF=1000
ans=INF
for a in range(1, m+1):
    for b in range(1, a+1):
        for c in range(1, b+1):
            dp=[INF]*(m+1)
            dp[0]=0
            for i in range(1, m+1):
                if i>=a:
                    dp[i]=min(dp[i], dp[i-a]+1)
                if i>=b:
                    dp[i]=min(dp[i], dp[i-b]+1)
                if i>=c:
                    dp[i]=min(dp[i], dp[i-c]+1)
            ans=min(ans, dp[v[0]]+dp[v[1]]+dp[v[2]]+dp[v[3]])
print(ans)
0