結果

問題 No.825 賢いお買い物
ユーザー ゆるくゆるく
提出日時 2019-05-03 22:12:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 61,792 KB
最終ジャッジ日時 2024-12-31 18:05:27
合計ジャッジ時間 12,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
18,596 KB
testcase_01 AC 38 ms
61,792 KB
testcase_02 AC 35 ms
18,720 KB
testcase_03 AC 37 ms
11,648 KB
testcase_04 AC 36 ms
18,592 KB
testcase_05 WA -
testcase_06 AC 38 ms
11,904 KB
testcase_07 AC 37 ms
11,904 KB
testcase_08 TLE -
testcase_09 AC 37 ms
11,904 KB
testcase_10 AC 37 ms
11,904 KB
testcase_11 TLE -
testcase_12 AC 35 ms
11,776 KB
testcase_13 AC 36 ms
11,904 KB
testcase_14 AC 33 ms
11,904 KB
testcase_15 AC 756 ms
20,224 KB
testcase_16 AC 156 ms
13,312 KB
testcase_17 AC 35 ms
11,776 KB
testcase_18 TLE -
testcase_19 AC 35 ms
11,904 KB
testcase_20 AC 36 ms
11,904 KB
testcase_21 AC 34 ms
60,604 KB
権限があれば一括ダウンロードができます

ソースコード

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