結果

問題 No.27 板の準備
ユーザー roarisroaris
提出日時 2019-08-21 23:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 77,028 KB
最終ジャッジ日時 2024-10-10 03:48:46
合計ジャッジ時間 3,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,504 KB
testcase_01 AC 38 ms
52,152 KB
testcase_02 AC 128 ms
76,812 KB
testcase_03 AC 54 ms
66,032 KB
testcase_04 AC 120 ms
76,952 KB
testcase_05 AC 111 ms
76,028 KB
testcase_06 AC 128 ms
76,688 KB
testcase_07 AC 129 ms
76,820 KB
testcase_08 AC 127 ms
77,020 KB
testcase_09 AC 129 ms
76,320 KB
testcase_10 AC 129 ms
77,028 KB
testcase_11 AC 120 ms
76,516 KB
testcase_12 AC 125 ms
76,576 KB
testcase_13 AC 125 ms
76,688 KB
testcase_14 AC 118 ms
76,372 KB
testcase_15 AC 130 ms
77,028 KB
testcase_16 AC 94 ms
76,532 KB
testcase_17 AC 132 ms
76,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V = list(map(int, input().split()))
M = max(V)
ans = 10 ** 18

for A in range(1, M+1):
    for B in range(1, M+1):
        for C in range(1, M+1):
            dp = [10**18] * (M+1)
            dp[0] = 0
            
            for i in range(1, M+1):
                if i - A >= 0:
                    dp[i] = min(dp[i], dp[i-A] + 1)
                if i - B >= 0:
                    dp[i] = min(dp[i], dp[i-B] + 1)
                if i - C >= 0:
                    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