結果
問題 | No.1772 Many DELETEQs |
ユーザー | mkawa2 |
提出日時 | 2021-12-17 19:06:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 808 ms / 3,500 ms |
コード長 | 1,249 bytes |
コンパイル時間 | 348 ms |
コンパイル使用メモリ | 82,212 KB |
実行使用メモリ | 202,880 KB |
最終ジャッジ日時 | 2024-09-14 20:29:58 |
合計ジャッジ時間 | 7,628 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 613 ms
201,432 KB |
testcase_01 | AC | 615 ms
201,728 KB |
testcase_02 | AC | 614 ms
201,856 KB |
testcase_03 | AC | 808 ms
202,484 KB |
testcase_04 | AC | 797 ms
202,584 KB |
testcase_05 | AC | 805 ms
202,284 KB |
testcase_06 | AC | 721 ms
202,880 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 18446744073709551615 # inf = 4294967295 # md = 10**9+7 md = 998244353 n = 4001 # n = 20 dp = [[0]*n for _ in range(n)] for i in range(n): dp[i][0] = 1 for i in range(n): dp[0][i] = 1 for i in range(1,n): for j in range(1,n): if i == j == 0: continue if i and j: dp[i][j] += dp[i-1][j-1]*2%md if i: dp[i][j] += dp[i-1][j] if j: dp[i][j] += dp[i][j-1] dp[i][j] %= md for i in range(n-1): for j in range(n-1): dp[i+1][j+1] += dp[i][j] dp[i+1][j+1] %= md # p2D(dp) for _ in range(II()): x, y = LI() print(dp[x][y])