結果

問題 No.27 板の準備
ユーザー colognecologne
提出日時 2022-01-23 02:04:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,688 KB
最終ジャッジ日時 2024-11-28 15:03:26
合計ジャッジ時間 2,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
53,036 KB
testcase_02 AC 83 ms
76,184 KB
testcase_03 AC 43 ms
59,308 KB
testcase_04 AC 80 ms
76,688 KB
testcase_05 AC 63 ms
72,860 KB
testcase_06 AC 80 ms
76,164 KB
testcase_07 AC 91 ms
76,396 KB
testcase_08 AC 97 ms
76,260 KB
testcase_09 AC 87 ms
76,416 KB
testcase_10 AC 86 ms
76,140 KB
testcase_11 AC 75 ms
76,220 KB
testcase_12 AC 85 ms
76,192 KB
testcase_13 AC 80 ms
76,132 KB
testcase_14 AC 63 ms
73,996 KB
testcase_15 AC 88 ms
76,492 KB
testcase_16 AC 53 ms
64,412 KB
testcase_17 AC 89 ms
76,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def main():
    x, y, z, w = map(int, input().split())
    M = max(x, y, z, w)
    ans = float('inf')
    for a in range(1, M+1):
        for b in range(1, a):
            for c in range(1, b):
                D = [0] + [float('inf')]*M
                for i in range(M):
                    for j in [a, b, c]:
                        if i+j <= M:
                            D[i+j] = min(D[i+j], D[i]+1)
                ans = min(ans, D[x]+D[y]+D[z]+D[w])
    print(ans)


if __name__ == '__main__':
    main()
0