結果

問題 No.825 賢いお買い物
ユーザー titiatitia
提出日時 2019-05-03 21:29:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 63,816 KB
最終ジャッジ日時 2024-06-10 06:26:40
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,504 KB
testcase_01 AC 45 ms
63,132 KB
testcase_02 AC 36 ms
60,024 KB
testcase_03 AC 36 ms
59,256 KB
testcase_04 AC 37 ms
60,940 KB
testcase_05 AC 39 ms
60,932 KB
testcase_06 AC 31 ms
53,216 KB
testcase_07 AC 35 ms
59,548 KB
testcase_08 AC 39 ms
61,196 KB
testcase_09 AC 35 ms
59,988 KB
testcase_10 AC 38 ms
60,872 KB
testcase_11 AC 43 ms
62,564 KB
testcase_12 AC 38 ms
59,664 KB
testcase_13 AC 32 ms
53,576 KB
testcase_14 AC 37 ms
60,252 KB
testcase_15 AC 37 ms
60,496 KB
testcase_16 AC 40 ms
63,816 KB
testcase_17 AC 35 ms
59,284 KB
testcase_18 AC 40 ms
62,436 KB
testcase_19 AC 41 ms
60,200 KB
testcase_20 AC 36 ms
59,588 KB
testcase_21 AC 34 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C=map(int,input().split())

def rest(i,j,money):
    otsuri=i+10*j-money

    return otsuri//10+otsuri%10

ANS=[]
for i in range(A+1):
    for j in range(B+1):
        if i+j==0:
            continue

        for money in range(1,i+10*B+1):
            otsuri=rest(i,j,money)
            if otsuri+(A-i)+(B-j)==C:
                ANS.append(money)


if len(ANS)>0:
    print(min(ANS))
else:
    print("Impossible")
0