結果
問題 | No.1964 sum = length |
ユーザー | terasa |
提出日時 | 2022-06-03 22:31:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,763 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 82,580 KB |
実行使用メモリ | 189,844 KB |
最終ジャッジ日時 | 2024-09-21 02:58:15 |
合計ジャッジ時間 | 18,145 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
78,848 KB |
testcase_01 | AC | 88 ms
72,064 KB |
testcase_02 | AC | 185 ms
87,552 KB |
testcase_03 | AC | 85 ms
71,936 KB |
testcase_04 | AC | 120 ms
78,848 KB |
testcase_05 | AC | 127 ms
79,872 KB |
testcase_06 | AC | 132 ms
80,768 KB |
testcase_07 | AC | 139 ms
81,152 KB |
testcase_08 | AC | 145 ms
82,068 KB |
testcase_09 | AC | 149 ms
82,560 KB |
testcase_10 | AC | 153 ms
82,816 KB |
testcase_11 | AC | 154 ms
83,420 KB |
testcase_12 | AC | 235 ms
101,504 KB |
testcase_13 | AC | 281 ms
112,512 KB |
testcase_14 | AC | 350 ms
124,132 KB |
testcase_15 | WA | - |
testcase_16 | AC | 178 ms
87,332 KB |
testcase_17 | AC | 275 ms
104,960 KB |
testcase_18 | AC | 291 ms
108,032 KB |
testcase_19 | AC | 237 ms
98,048 KB |
testcase_20 | AC | 250 ms
99,456 KB |
testcase_21 | AC | 180 ms
86,400 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
import sys import pypyjit import itertools import heapq import math from collections import deque, defaultdict import bisect input = sys.stdin.readline sys.setrecursionlimit(10 ** 6) pypyjit.set_param('max_unroll_recursion=-1') def index_lt(a, x): 'return largest index s.t. A[i] < x or -1 if it does not exist' return bisect.bisect_left(a, x) - 1 def index_le(a, x): 'return largest index s.t. A[i] <= x or -1 if it does not exist' return bisect.bisect_right(a, x) - 1 def index_gt(a, x): 'return smallest index s.t. A[i] > x or len(a) if it does not exist' return bisect.bisect_right(a, x) def index_ge(a, x): 'return smallest index s.t. A[i] >= x or len(a) if it does not exist' return bisect.bisect_left(a, x) N = int(input()) mod = 998_244_353 dp = [[[0 for _ in range(310)] for _ in range(110)] for _ in range(N + 1)] S = [[[0 for _ in range(310)] for _ in range(110)] for _ in range(N + 1)] dp[0][0][0] = 1 for k in range(310): S[0][0][k] = 1 for i in range(1, N + 1): for j in range(1, 100): for k in range(1, 300): if j >= 1 and k >= 1: dp[i][j][k] += S[i - 1][j - 1][k - 1] - (S[i - 1][j - 1][k - 10] if k >= 10 else 0) if j >= 2 and k >= 10: dp[i][j][k] += S[i - 1][j - 2][k - 10] - (S[i - 1][j - 2][k - 100] if k >= 100 else 0) if j >= 3 and k >= 100: dp[i][j][k] += S[i - 1][j - 3][k - 100] - (S[i - 1][j - 3][k - 1000] if k >= 1000 else 0) dp[i][j][k] %= mod S[i][j][k] += S[i][j][k - 1] + dp[i][j][k] S[i][j][k] %= mod ans = 0 for j in range(100): for k in range(300): if j + N - 1 == k: ans += dp[N][j][k] ans %= mod print(ans)