結果

問題 No.825 賢いお買い物
ユーザー kohei2019kohei2019
提出日時 2022-04-20 21:39:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-11 23:38:48
合計ジャッジ時間 1,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,864 KB
testcase_01 AC 37 ms
57,600 KB
testcase_02 AC 49 ms
72,064 KB
testcase_03 AC 48 ms
66,176 KB
testcase_04 AC 52 ms
72,192 KB
testcase_05 AC 47 ms
62,464 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 46 ms
64,384 KB
testcase_08 WA -
testcase_09 AC 45 ms
62,080 KB
testcase_10 AC 55 ms
75,392 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 32 ms
52,096 KB
testcase_14 AC 33 ms
51,712 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 36 ms
52,224 KB
testcase_18 AC 59 ms
76,160 KB
testcase_19 WA -
testcase_20 AC 37 ms
53,248 KB
testcase_21 AC 35 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C = map(int,input().split())

for i in range(1,A+B*10+1):
    for j in range(A+1):
        for k in range(B+1):
            if i <= j+k*10:
                rm = (j+k*10)-i
                a = sum(map(int,list(str(rm))))
                if a+(A-j)+(B-k) == C:
                    print(i)
                    exit()
print('Impossible')
0