結果

問題 No.825 賢いお買い物
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-06 19:15:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 60,928 KB
最終ジャッジ日時 2024-09-14 10:33:51
合計ジャッジ時間 2,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,008 KB
testcase_01 AC 53 ms
60,288 KB
testcase_02 AC 47 ms
57,728 KB
testcase_03 AC 47 ms
58,240 KB
testcase_04 AC 47 ms
58,112 KB
testcase_05 AC 51 ms
59,264 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 47 ms
57,856 KB
testcase_08 AC 53 ms
60,928 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 48 ms
57,984 KB
testcase_11 AC 52 ms
59,904 KB
testcase_12 AC 48 ms
58,496 KB
testcase_13 AC 41 ms
51,712 KB
testcase_14 AC 47 ms
57,984 KB
testcase_15 AC 53 ms
59,392 KB
testcase_16 AC 53 ms
60,160 KB
testcase_17 AC 47 ms
57,728 KB
testcase_18 AC 50 ms
59,520 KB
testcase_19 AC 48 ms
59,008 KB
testcase_20 AC 42 ms
52,096 KB
testcase_21 AC 42 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int, input().split())
ans = 10**18
for i in range(a+1):
    for j in range(b+1):
        x = i+10*j
        if x == 0:
            continue
        R = a-i+b-j
        for y in range(1, x+1):
            z = x-y
            q, r = divmod(z, 10)
            if R+q+r == c:
                ans = min(ans, y)
if ans != 10**18:
    print(ans)
else:
    print('Impossible')
0