結果

問題 No.825 賢いお買い物
ユーザー tomarint2tomarint2
提出日時 2019-05-03 22:53:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-06-10 07:02:50
合計ジャッジ時間 2,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,288 KB
testcase_01 AC 50 ms
62,336 KB
testcase_02 AC 44 ms
59,920 KB
testcase_03 AC 42 ms
59,392 KB
testcase_04 AC 45 ms
60,672 KB
testcase_05 AC 47 ms
61,312 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 44 ms
59,268 KB
testcase_08 AC 52 ms
63,232 KB
testcase_09 AC 43 ms
59,152 KB
testcase_10 AC 46 ms
60,544 KB
testcase_11 AC 51 ms
62,464 KB
testcase_12 AC 45 ms
60,544 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 46 ms
61,312 KB
testcase_15 AC 50 ms
62,508 KB
testcase_16 AC 52 ms
62,848 KB
testcase_17 AC 44 ms
59,648 KB
testcase_18 AC 47 ms
61,568 KB
testcase_19 AC 45 ms
60,800 KB
testcase_20 AC 42 ms
58,880 KB
testcase_21 AC 42 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C = map(int,input().split())
inf = 1 << 60
ans = inf
for a in range(A+1):
    for b in range(B+1):
        for i in range(1,221):
            if a+b*10 >= i:
                change = a+b*10 - i
                n = (A-a)+(B-b)+(change//10)+(change%10)
                if n == C:
                    ans = min(ans, i)
if ans == inf:
    print('Impossible')
else:
    print(ans)
0