結果

問題 No.1682 Unfair Game
ユーザー とりゐとりゐ
提出日時 2021-09-17 23:11:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-06-29 21:58:09
合計ジャッジ時間 1,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,392 KB
testcase_01 AC 43 ms
58,368 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 47 ms
67,328 KB
testcase_08 WA -
testcase_09 AC 51 ms
67,584 KB
testcase_10 WA -
testcase_11 AC 46 ms
65,420 KB
testcase_12 AC 49 ms
67,456 KB
testcase_13 WA -
testcase_14 AC 41 ms
58,752 KB
testcase_15 AC 41 ms
58,496 KB
testcase_16 AC 40 ms
58,368 KB
testcase_17 AC 43 ms
59,392 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 49 ms
67,456 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
dp=[0]*10001
dp[5000]=1
mod=10**9+7
for i in a:
  j=i-50
  dp2=dp.copy()
  for k in range(50,9551):
    dp[k+j]+=dp2[k]
    dp[k+j]%=mod
print(sum(dp[5001:])%mod)
0