結果
問題 | No.842 初詣 |
ユーザー | Hitoshi Hayakawa |
提出日時 | 2019-09-28 00:20:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 985 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 817,792 KB |
最終ジャッジ日時 | 2024-09-25 03:24:35 |
合計ジャッジ時間 | 3,964 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import sys input = sys.stdin.readline sys.setrecursionlimit(2147483647) INF=float("inf") MOD=10**9+7 # A = [ int(input()) for _ in range(N) ] ############################## A, B, C, D, E, F, G = map(int, input().split()) def dfs(a, b, c, d, e, f, g): if g <= 0: return g == 0 if a > 0: num = min(g // 500, a) if dfs(a-num, b, c, d, e, f, g-500*num): return True if b > 0: num = min(g // 100, b) if dfs(a, b-num, c, d, e, f, g-100*num): return True if c > 0: num = min(g // 50, c) if dfs(a, b, c-num, d, e, f, g-50*num): return True if d > 0: num = min(g // 10, d) if dfs(a, b, c, d-num, e, f, g-10*num): return True if e > 0: num = min(g // 5, e) if dfs(a, b, c, d, e-num, f, g-5*num): return True if f > 0: num = min(g // 1, f) if dfs(a, b, c, d, e, f-num, g-1*num): return True return False print('YES' if dfs(A, B, C, D, E, F, G) else 'NO')