結果

問題 No.825 賢いお買い物
ユーザー mtkmtk
提出日時 2019-05-21 18:26:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 836 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,084 KB
実行使用メモリ 10,148 KB
最終ジャッジ日時 2023-10-17 10:43:29
合計ジャッジ時間 1,513 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def same(A, B, diff):
    if B > 0:
        return 9
    return 0


def increase(A, B, diff):
    if B == 0:
        return 0
    if diff > 9:
        return 0
    return 9-diff


def decrease(A, B, diff):
    cnt = 0
    while diff < -9:
        if A > 9:
            A -= 10
            B += 1
            diff += 9
        else:
            break
    if diff == 0:
        return same(A, B, diff)
    if A+diff >= 0:
        return cnt-diff
    cnt += A
    diff += A
    if B+diff >= 0:
        return cnt-diff*10
    return 0


A, B, C = [int(i) for i in input().split()]
diff = C-A-B
if diff > 0:
    price = increase(A, B, diff)
elif diff < 0:
    price = decrease(A, B, diff)
else:
    price = same(A, B, diff)

if price > 0:
    print(price, '\n')
else:
    print("Impossible\n")
0