結果

問題 No.825 賢いお買い物
ユーザー stngstng
提出日時 2022-07-09 16:49:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 61,752 KB
最終ジャッジ日時 2024-12-31 04:24:39
合計ジャッジ時間 2,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,088 KB
testcase_01 AC 35 ms
53,124 KB
testcase_02 AC 42 ms
61,212 KB
testcase_03 AC 40 ms
60,340 KB
testcase_04 AC 42 ms
60,776 KB
testcase_05 AC 39 ms
59,344 KB
testcase_06 AC 35 ms
53,012 KB
testcase_07 AC 42 ms
61,136 KB
testcase_08 AC 44 ms
61,752 KB
testcase_09 AC 40 ms
59,936 KB
testcase_10 AC 41 ms
59,920 KB
testcase_11 AC 43 ms
61,052 KB
testcase_12 AC 38 ms
59,052 KB
testcase_13 AC 35 ms
52,320 KB
testcase_14 AC 36 ms
52,552 KB
testcase_15 AC 43 ms
60,776 KB
testcase_16 AC 39 ms
59,568 KB
testcase_17 AC 35 ms
52,228 KB
testcase_18 WA -
testcase_19 AC 42 ms
60,172 KB
testcase_20 AC 35 ms
53,500 KB
testcase_21 AC 35 ms
52,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

okn = a+b*10

for i in range(1,okn):
    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