結果

問題 No.825 賢いお買い物
ユーザー stngstng
提出日時 2022-07-09 16:50:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 62,268 KB
最終ジャッジ日時 2024-06-09 23:40:53
合計ジャッジ時間 2,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,016 KB
testcase_01 AC 41 ms
52,444 KB
testcase_02 AC 44 ms
60,764 KB
testcase_03 AC 40 ms
60,868 KB
testcase_04 AC 41 ms
61,308 KB
testcase_05 AC 37 ms
58,744 KB
testcase_06 AC 33 ms
51,868 KB
testcase_07 AC 41 ms
59,956 KB
testcase_08 AC 41 ms
61,888 KB
testcase_09 AC 40 ms
60,276 KB
testcase_10 AC 39 ms
61,704 KB
testcase_11 AC 40 ms
62,268 KB
testcase_12 AC 36 ms
58,528 KB
testcase_13 AC 33 ms
52,572 KB
testcase_14 AC 35 ms
52,892 KB
testcase_15 AC 41 ms
61,624 KB
testcase_16 AC 38 ms
60,200 KB
testcase_17 AC 34 ms
53,236 KB
testcase_18 AC 39 ms
60,748 KB
testcase_19 AC 40 ms
61,276 KB
testcase_20 AC 34 ms
52,640 KB
testcase_21 AC 35 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

okn = a+b*10

for i in range(1,okn+1):
    for j in range(a+1):
        for k in range(b+1):
            if i <= j+k*10:
                tmp = j+k*10-i
                if tmp%10+tmp//10+a-j+b-k == c:
                    print(i)
                    exit()

    

print("Impossible")
0