結果

問題 No.2625 Bouns Ai
ユーザー hato336hato336
提出日時 2024-02-10 09:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,212 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 457,800 KB
最終ジャッジ日時 2024-09-28 17:03:01
合計ジャッジ時間 25,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
103,052 KB
testcase_01 AC 140 ms
96,496 KB
testcase_02 AC 199 ms
134,096 KB
testcase_03 AC 908 ms
456,072 KB
testcase_04 AC 1,077 ms
457,104 KB
testcase_05 AC 878 ms
456,268 KB
testcase_06 AC 849 ms
456,776 KB
testcase_07 AC 881 ms
456,220 KB
testcase_08 AC 885 ms
455,948 KB
testcase_09 AC 871 ms
457,800 KB
testcase_10 AC 1,008 ms
455,328 KB
testcase_11 AC 155 ms
110,136 KB
testcase_12 AC 1,159 ms
457,260 KB
testcase_13 AC 1,200 ms
456,600 KB
testcase_14 AC 1,185 ms
456,996 KB
testcase_15 AC 1,141 ms
456,464 KB
testcase_16 AC 1,145 ms
456,704 KB
testcase_17 AC 1,147 ms
457,324 KB
testcase_18 AC 1,135 ms
456,268 KB
testcase_19 AC 1,154 ms
456,092 KB
testcase_20 AC 1,178 ms
456,192 KB
testcase_21 AC 1,158 ms
455,812 KB
testcase_22 AC 1,175 ms
457,320 KB
testcase_23 AC 1,212 ms
456,076 KB
testcase_24 AC 1,183 ms
457,404 KB
testcase_25 AC 1,156 ms
456,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
n = int(input())
alist = list(map(int,input().split()))
#alist = []
#s = input()
#n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
dp = [[0 for i in range(100001)] for j in range(n)]
sumdp = []
mod = 998244353
for i in range(n):
    if i == 0:
        for j in range(100001):
            if alist[i]+j <= 100000:
                dp[i][j] = 1
    else:
        for j in range(100001):
            if alist[i]+j > 100000:
                continue
            if 0 <= min(j,j-alist[i-1]+alist[i]) <= 100000:
                dp[i][j] = sumdp[-1][min(j,j-alist[i-1]+alist[i])]
                dp[i][j] %= mod
    sumdp.append(list(itertools.accumulate(dp[i],func=lambda x,y:(x+y)%mod)))
ans = 0
for i in range(100001):
    if i + alist[-1] <= 100000:
        ans += dp[-1][i]
        ans %= mod
        #print(dp[-1][i],i)
print(ans)
0