結果

問題 No.162 8020運動
ユーザー maspymaspy
提出日時 2020-04-09 00:41:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 840 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-19 05:57:29
合計ジャッジ時間 2,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 33 ms
11,008 KB
testcase_03 AC 34 ms
11,136 KB
testcase_04 AC 35 ms
11,136 KB
testcase_05 AC 34 ms
11,264 KB
testcase_06 AC 34 ms
11,264 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 34 ms
11,136 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 34 ms
11,136 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 30 ms
10,496 KB
testcase_18 AC 34 ms
11,264 KB
testcase_19 AC 33 ms
10,880 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 34 ms
10,880 KB
testcase_22 AC 34 ms
11,008 KB
testcase_23 AC 33 ms
10,880 KB
testcase_24 AC 33 ms
11,008 KB
testcase_25 AC 34 ms
11,008 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 33 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from functools import lru_cache

A, *P = map(int, read().split())
P = tuple(x / 100 for x in P)

@lru_cache(None)
def f(N, i, rest_year, left_flag=False):
    """ N 本の歯があり、i-1番の歯まで虫判定を終えた"""
    if N == 0:
        return 0
    if rest_year == 0:
        return N
    if i == N:
        return f(N, 0, rest_year - 1)
    p = P[0] if N == 1 else P[1] if i in (0, N - 1) else P[2]
    if i == 0 and left_flag:
        p = P[1] if i == N-1 else P[2]
    # 抜く場合
    x = f(i, 0, rest_year - 1) + f(N - i - 1, 0, rest_year, True)
    # 抜かない場合
    y = f(N, i + 1, rest_year)
    return p * x + (1 - p) * y


answer = f(14, 0, 80 - A) * 2
print(answer)
0