結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,788 KB
testcase_01 AC 43 ms
58,928 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 54 ms
68,932 KB
testcase_08 WA -
testcase_09 AC 54 ms
68,468 KB
testcase_10 WA -
testcase_11 AC 50 ms
66,156 KB
testcase_12 AC 51 ms
68,332 KB
testcase_13 WA -
testcase_14 AC 41 ms
58,168 KB
testcase_15 AC 43 ms
58,868 KB
testcase_16 AC 41 ms
59,260 KB
testcase_17 AC 44 ms
60,044 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 54 ms
68,604 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(0,10001):
    if 0<=j+k<=10000:
      dp[k+j]+=dp2[k]
      dp[k+j]%=mod
print(sum(dp[5001:])%mod)
0