結果
問題 | No.1353 Limited Sequence |
ユーザー | GER_chen |
提出日時 | 2021-01-17 14:37:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,117 bytes |
コンパイル時間 | 376 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 179,616 KB |
最終ジャッジ日時 | 2024-05-07 03:34:43 |
合計ジャッジ時間 | 4,428 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
17,948 KB |
testcase_01 | AC | 47 ms
11,008 KB |
testcase_02 | AC | 62 ms
11,008 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 36 ms
10,880 KB |
testcase_05 | AC | 37 ms
10,752 KB |
testcase_06 | AC | 39 ms
10,752 KB |
testcase_07 | AC | 72 ms
11,264 KB |
testcase_08 | AC | 53 ms
11,136 KB |
testcase_09 | AC | 73 ms
11,136 KB |
testcase_10 | AC | 46 ms
11,008 KB |
testcase_11 | AC | 40 ms
10,752 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#1353 N, L, R = map(int, input().split()) A = list(map(int, input().split())) mod = 998244353 DP = [[[0]*((allsum+1)//(last+1)) for last in range(min(N, allsum+1))] for allsum in range(R)] """ allsum+1 総和 last+1 最後の数 <= 総和 length+1 最後の数の連続数 """ for allsum in range(R): for last in range(min(N, allsum+1)): for length in range((allsum+1)//(last+1)): if allsum == last and length == 0: DP[allsum][last][length] = 1 #print(DP) elif length > 0: if allsum+1 >= 2*last+1: if A[last] >= length+1: DP[allsum][last][length] = DP[allsum-last-1][last][length-1] else: DP[allsum][last][length] = sum([sum(v) for v in DP[allsum-last-1]]) try: DP[allsum][last][length] -= sum(DP[allsum-last-1][last]) except IndexError: pass DP[allsum][last][length] %= mod ans = 0 for i in range(L-1, R): ans += sum([sum(v) for v in DP[i]]) print(ans%mod) #print(DP)