結果

問題 No.825 賢いお買い物
ユーザー 👑 rin204rin204
提出日時 2021-08-26 17:20:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 76,060 KB
最終ジャッジ日時 2024-11-18 10:56:47
合計ジャッジ時間 2,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,968 KB
testcase_01 AC 42 ms
58,072 KB
testcase_02 AC 55 ms
71,140 KB
testcase_03 AC 54 ms
65,664 KB
testcase_04 AC 57 ms
71,472 KB
testcase_05 AC 51 ms
63,508 KB
testcase_06 AC 39 ms
52,944 KB
testcase_07 AC 52 ms
65,404 KB
testcase_08 WA -
testcase_09 AC 48 ms
62,660 KB
testcase_10 AC 61 ms
75,872 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
52,616 KB
testcase_14 AC 39 ms
52,240 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 40 ms
52,748 KB
testcase_18 AC 63 ms
75,688 KB
testcase_19 WA -
testcase_20 AC 43 ms
53,228 KB
testcase_21 AC 39 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int, input().split())

for yen in range(1, a + b * 10 + 1):
    for i in range(a + 1):
        for j in range(b + 1):
            if i + 10 * j < yen:
                continue
            d = (i + 10 * j) - yen
            cnt = a - i + b - j + sum(map(int, str(d)))
            if cnt == c:
                print(yen)
                exit()
                
print('Impossible')
0