結果

問題 No.825 賢いお買い物
ユーザー akitsugu777akitsugu777
提出日時 2019-06-26 10:07:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-24 09:16:46
合計ジャッジ時間 1,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 29 ms
10,880 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

l = []
for i in range(a+1):
    for j in range(-a//10, b+1):
        if (a-i) + (b-j) == c:
            l.append([i, j])
# print(l)

l2 = []
for i, j in l:
    if i + 10*j > 0:
        l2.append(i + 10*j)
# print(l2)

if len(l2) == 0:
    print('Impossible')
else:
    print(min(l2))
0