結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 44 ms
60,184 KB
testcase_03 AC 45 ms
59,636 KB
testcase_04 AC 44 ms
60,416 KB
testcase_05 AC 39 ms
58,752 KB
testcase_06 AC 34 ms
52,000 KB
testcase_07 AC 42 ms
60,288 KB
testcase_08 AC 43 ms
60,412 KB
testcase_09 AC 39 ms
59,292 KB
testcase_10 AC 42 ms
60,288 KB
testcase_11 AC 42 ms
60,160 KB
testcase_12 AC 38 ms
58,240 KB
testcase_13 AC 33 ms
51,840 KB
testcase_14 AC 34 ms
52,352 KB
testcase_15 AC 42 ms
59,960 KB
testcase_16 AC 43 ms
59,648 KB
testcase_17 AC 42 ms
51,968 KB
testcase_18 WA -
testcase_19 AC 47 ms
59,648 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 38 ms
52,608 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