結果

問題 No.1682 Unfair Game
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-17 22:06:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 108,236 KB
最終ジャッジ日時 2024-06-29 20:40:10
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 263 ms
84,352 KB
testcase_08 WA -
testcase_09 AC 58 ms
67,072 KB
testcase_10 WA -
testcase_11 AC 61 ms
68,352 KB
testcase_12 AC 50 ms
62,336 KB
testcase_13 WA -
testcase_14 AC 42 ms
53,376 KB
testcase_15 AC 40 ms
53,376 KB
testcase_16 AC 41 ms
53,504 KB
testcase_17 AC 40 ms
53,680 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 205 ms
83,840 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
P = list(map(int, input().split()))
mod = 10 ** 9 + 7

# dp[i, j]: i枚コインを投げて、表の期待値がj -> 何通りか
dp = [defaultdict(int) for _ in range(N + 1)]
dp[0][0] = 1
for i, p in enumerate(P, 1):
    for j in range(i)[::-1]:
        for k, v in dp[j].items():
            dp[j + 1][k + p] += v
            dp[j + 1][k + p] %= mod

ans = 0
for i in range(1, N+1):
    for k, v in dp[i].items():
        if 2 * k > 100 * i:
            ans = (ans + v) % mod

print(ans)
0