結果

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

テストケース

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

ソースコード

diff #

def func(pay, price, A, B, C):
    #pay: a, b
    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