結果

問題 No.825 賢いお買い物
ユーザー ohanaohana
提出日時 2023-10-27 13:53:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 275 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 68,012 KB
最終ジャッジ日時 2024-09-25 13:01:20
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,156 KB
testcase_01 AC 45 ms
60,912 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 44 ms
60,184 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 42 ms
59,312 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 44 ms
60,204 KB
testcase_12 AC 44 ms
59,240 KB
testcase_13 RE -
testcase_14 AC 42 ms
58,504 KB
testcase_15 AC 43 ms
57,852 KB
testcase_16 AC 44 ms
59,196 KB
testcase_17 AC 42 ms
58,492 KB
testcase_18 RE -
testcase_19 AC 42 ms
58,280 KB
testcase_20 AC 39 ms
52,004 KB
testcase_21 AC 39 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int, input().split())

A = []
for i in range(b + 1):
    for j in range(a + 1):
        for k in range(1, i * 10 + j + 1):
            if c == k // 10 + k % 10 + b - i + a - j:
                A.append(i * 10 + j - k)

print(min(A) if min(A) else "Impossible")
0