結果

問題 No.825 賢いお買い物
ユーザー tomarint2tomarint2
提出日時 2019-05-03 22:53:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 64,300 KB
最終ジャッジ日時 2024-12-31 18:54:25
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,264 KB
testcase_01 AC 49 ms
62,988 KB
testcase_02 AC 45 ms
60,332 KB
testcase_03 AC 42 ms
60,216 KB
testcase_04 AC 44 ms
60,636 KB
testcase_05 AC 46 ms
61,836 KB
testcase_06 AC 36 ms
53,000 KB
testcase_07 AC 43 ms
60,500 KB
testcase_08 AC 48 ms
64,300 KB
testcase_09 AC 42 ms
59,180 KB
testcase_10 AC 43 ms
61,888 KB
testcase_11 AC 47 ms
63,212 KB
testcase_12 AC 44 ms
60,988 KB
testcase_13 AC 35 ms
53,628 KB
testcase_14 AC 44 ms
61,688 KB
testcase_15 AC 46 ms
62,684 KB
testcase_16 AC 48 ms
63,456 KB
testcase_17 AC 41 ms
59,688 KB
testcase_18 AC 46 ms
63,772 KB
testcase_19 AC 45 ms
61,144 KB
testcase_20 AC 41 ms
60,480 KB
testcase_21 AC 39 ms
58,972 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