結果

問題 No.825 賢いお買い物
ユーザー ゆるくゆるく
提出日時 2019-05-03 22:12:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-06-10 06:39:49
合計ジャッジ時間 3,970 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# coding: UTF-8
import sys
sys.setrecursionlimit(900000)
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 and y >= c:
        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