結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 35 ms
52,224 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 33 ms
51,840 KB
testcase_14 AC 34 ms
52,096 KB
testcase_15 AC 34 ms
52,360 KB
testcase_16 WA -
testcase_17 AC 34 ms
51,840 KB
testcase_18 WA -
testcase_19 AC 34 ms
52,096 KB
testcase_20 AC 33 ms
51,964 KB
testcase_21 AC 33 ms
52,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

okn = a+b*10

for i in range(1,okn+1):
    if i % 10 <= a:
        kk = (a-(i%10))+b-(i//10)
        if kk == c:
            print(i)
            exit()
    if i % 10 != 0:
        if (i//10)+1 <= b:
            kk = b-((i//10)+1) + a + (10-(i%10))
            if kk == c:
                print(i)
                exit()
    for j in range(2):
        ryo = i+10*(j+1)
        if ryo <= a:
            kk = a-ryo+j+1+b
            if kk == c:
                print(i)
                exit()

print("Impossible")
0