結果

問題 No.825 賢いお買い物
ユーザー ゆるくゆるく
提出日時 2019-05-03 21:49:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 67,252 KB
最終ジャッジ日時 2024-12-31 17:48:01
合計ジャッジ時間 12,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
18,592 KB
testcase_01 AC 37 ms
66,876 KB
testcase_02 AC 37 ms
18,592 KB
testcase_03 AC 36 ms
67,252 KB
testcase_04 AC 35 ms
18,596 KB
testcase_05 WA -
testcase_06 AC 36 ms
11,904 KB
testcase_07 AC 37 ms
11,648 KB
testcase_08 TLE -
testcase_09 AC 35 ms
11,776 KB
testcase_10 AC 35 ms
11,904 KB
testcase_11 TLE -
testcase_12 AC 36 ms
11,776 KB
testcase_13 AC 35 ms
11,904 KB
testcase_14 AC 35 ms
11,776 KB
testcase_15 AC 774 ms
21,248 KB
testcase_16 AC 1,151 ms
27,904 KB
testcase_17 AC 35 ms
11,776 KB
testcase_18 TLE -
testcase_19 AC 36 ms
11,904 KB
testcase_20 AC 35 ms
11,776 KB
testcase_21 AC 35 ms
65,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: UTF-8
import sys
#sys.setrecursionlimit(n)
import heapq
import re
import bisect
import random
import math
import itertools
from collections import defaultdict, deque
from copy import deepcopy
from decimal import *

a, b, c = map(int, input().split())
ans = []
def dfs(x, y, pay):
    if x + y == c:
        ans.append(pay)
    if x + y < c:
        return -1
    if y > 0:
        dfs(x, y - 1, pay + 10)
    if x >= 10:
        dfs(x - 10, y + 1, pay)
    if x > 0:
        dfs(x - 1, y, pay + 1)
    return -1

if a + b == c:
    print('Impossible')
else:
    dfs(a, b, 0)
    if ans:
        print(min(ans))
    else:
        print('Impossible')
0