結果

問題 No.825 賢いお買い物
ユーザー greenteabiscuitgreenteabiscuit
提出日時 2019-05-13 15:56:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 745 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-07 18:38:41
合計ジャッジ時間 1,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 53 ms
10,624 KB
testcase_02 AC 33 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 37 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 37 ms
10,496 KB
testcase_12 AC 28 ms
10,496 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 34 ms
10,752 KB
testcase_16 AC 35 ms
10,496 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 WA -
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 26 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
def func(pay, price, A, B, C):
    change = pay[0] + 10 * pay[1] - price
    if change < 0:
        return None
    else:
        one_coin = (change) % 10
        ten_coin = (change) // 10
        coins = A - pay[0] + one_coin + B - pay[1] + ten_coin

        if coins == C:
            return price
        else:
            return None

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

num_list_A = [i for i in range(A + 1)]
num_list_B = [i for i in range(B + 1)]
pay_combos = list(product(num_list_A, num_list_B))

price = [func(pay, price, A, B, C) for pay in pay_combos for price in range(1, A + B * 10) if func(pay, price, A, B, C) is not None]

if not price:
    print('Impossible')
else:
    print(sorted(price)[0])
0