結果

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

テストケース

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

ソースコード

diff #

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

okn = a+b*10

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