結果
問題 | No.1388 Less than K |
ユーザー | vwxyz |
提出日時 | 2023-11-19 02:24:04 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,356 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 81,760 KB |
実行使用メモリ | 97,280 KB |
最終ジャッジ日時 | 2024-09-26 06:07:43 |
合計ジャッジ時間 | 13,488 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,856 KB |
testcase_01 | AC | 35 ms
52,588 KB |
testcase_02 | AC | 53 ms
68,352 KB |
testcase_03 | AC | 33 ms
52,352 KB |
testcase_04 | AC | 47 ms
63,360 KB |
testcase_05 | AC | 76 ms
77,072 KB |
testcase_06 | AC | 67 ms
73,088 KB |
testcase_07 | AC | 41 ms
60,160 KB |
testcase_08 | AC | 91 ms
76,928 KB |
testcase_09 | AC | 59 ms
71,168 KB |
testcase_10 | AC | 58 ms
69,888 KB |
testcase_11 | AC | 60 ms
68,736 KB |
testcase_12 | AC | 90 ms
77,056 KB |
testcase_13 | AC | 112 ms
77,816 KB |
testcase_14 | AC | 133 ms
78,080 KB |
testcase_15 | AC | 283 ms
79,488 KB |
testcase_16 | AC | 366 ms
81,096 KB |
testcase_17 | AC | 547 ms
82,200 KB |
testcase_18 | AC | 876 ms
84,984 KB |
testcase_19 | AC | 1,260 ms
87,332 KB |
testcase_20 | AC | 1,330 ms
87,552 KB |
testcase_21 | AC | 116 ms
87,680 KB |
testcase_22 | AC | 66 ms
73,856 KB |
testcase_23 | AC | 72 ms
77,184 KB |
testcase_24 | AC | 95 ms
82,560 KB |
testcase_25 | AC | 108 ms
83,936 KB |
testcase_26 | AC | 93 ms
84,352 KB |
testcase_27 | AC | 79 ms
79,488 KB |
testcase_28 | AC | 57 ms
72,192 KB |
testcase_29 | AC | 57 ms
71,424 KB |
testcase_30 | AC | 47 ms
63,744 KB |
testcase_31 | AC | 54 ms
66,560 KB |
testcase_32 | AC | 43 ms
60,160 KB |
testcase_33 | AC | 69 ms
75,520 KB |
testcase_34 | AC | 65 ms
75,136 KB |
testcase_35 | AC | 62 ms
74,112 KB |
testcase_36 | AC | 79 ms
82,432 KB |
testcase_37 | AC | 67 ms
77,056 KB |
testcase_38 | AC | 147 ms
88,064 KB |
testcase_39 | AC | 99 ms
86,252 KB |
testcase_40 | AC | 117 ms
85,248 KB |
testcase_41 | AC | 233 ms
91,776 KB |
testcase_42 | AC | 91 ms
88,136 KB |
testcase_43 | TLE | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
ソースコード
import sys readline=sys.stdin.readline H,W,K=map(int,readline().split()) H-=1;W-=1 K//=2 mod=998244353 fact=[1]+[i for i in range(1,H+W+1)] for i in range(1,H+W+1): fact[i]*=fact[i-1] fact[i]%=mod fact_inve=[i for i in range(1,H+W+1)]+[pow(fact[H+W],mod-2,mod)] for i in range(H+W-1,-1,-1): fact_inve[i]*=fact_inve[i+1] fact_inve[i]%=mod N=min(H,W) ans=0 if K<=600: for h in range(N+1): if h: prev=dp dp=[0]*(2*K+1) else: dp=[0]*(2*K+1) dp[K]=1 for w in range(max(h-K,0),min(h+K,N)+1): if h and abs((h-1)-w)<=K: dp[w-h+K]+=prev[w-(h-1)+K] if w and abs(h-(w-1))<=K: dp[w-h+K]+=dp[(w-1)-h+K] dp[w-h+K]%=mod ans+=fact[H+W]*fact_inve[H-h]%mod*fact_inve[W-h]%mod*fact_inve[2*h]%mod*dp[K]%mod ans%=mod else: for cnt in range(N+1): s=fact[2*cnt]*fact_inve[cnt]%mod*fact_inve[cnt]%mod for i in range(1,cnt//(K+1)+1): if i%2: s-=2*fact[2*cnt]*fact_inve[cnt-(K+1)*i]%mod*fact_inve[cnt+(K+1)*i]%mod else: s+=2*fact[2*cnt]*fact_inve[cnt-(K+1)*i]%mod*fact_inve[cnt+(K+1)*i]%mod s%=mod ans+=fact[H+W]*fact_inve[H-cnt]%mod*fact_inve[W-cnt]%mod*fact_inve[2*cnt]%mod*s%mod ans%=mod print(ans)