結果
問題 | No.2528 pop_(backfront or not) |
ユーザー | titia |
提出日時 | 2023-11-03 22:41:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 705 bytes |
コンパイル時間 | 357 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 433,664 KB |
最終ジャッジ日時 | 2024-09-25 21:06:37 |
合計ジャッジ時間 | 15,093 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 224 ms
257,664 KB |
testcase_01 | AC | 223 ms
252,672 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import sys input = sys.stdin.readline sys.setrecursionlimit(10**7) mod=998244353 N=int(input()) LIST=[[-1]*5000 for i in range(5000)] def calc(x,y): if y>(x+1)//2: y=x-y+1 if y==1 or y==x: return 0 if x==3: if y==2: return 1 else: return 0 if LIST[x][y]!=-1: return LIST[x][y] ANS=0 # 左から二つ ANS+=(y-2)*(y-2)//2*calc(x-2,y-2) # 左右一つずつ ANS+=(y-2)*(x-y-1)*calc(x-2,y-1) # 端二つ ANS+=calc(x-2,y-1) # 右から二つ ANS+=(x-y-1)*(x-y-2)//2*calc(x-2,y) LIST[x][y]=ANS%mod return LIST[x][y] for i in range(1,N*2+2): print(calc(N*2+1,i))