結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー syunsukesyunsuke
提出日時 2022-11-26 23:16:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 952 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-10-03 05:58:51
合計ジャッジ時間 7,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
62,244 KB
testcase_01 AC 38 ms
61,184 KB
testcase_02 AC 38 ms
62,416 KB
testcase_03 AC 442 ms
76,260 KB
testcase_04 AC 39 ms
61,600 KB
testcase_05 AC 40 ms
61,032 KB
testcase_06 AC 39 ms
60,680 KB
testcase_07 AC 952 ms
76,672 KB
testcase_08 AC 268 ms
76,280 KB
testcase_09 AC 924 ms
76,208 KB
testcase_10 AC 923 ms
76,252 KB
testcase_11 AC 653 ms
76,464 KB
testcase_12 AC 622 ms
76,336 KB
testcase_13 AC 39 ms
61,908 KB
testcase_14 AC 299 ms
76,392 KB
testcase_15 AC 247 ms
76,440 KB
testcase_16 AC 48 ms
65,484 KB
testcase_17 AC 228 ms
76,412 KB
testcase_18 AC 235 ms
76,456 KB
testcase_19 AC 139 ms
76,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 0
mod = 998244353

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod
 #出力の制限
N = 10000
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )

for i in range(1,n):
    if n >= i * 3:
        for j in range(3*i,n+1):
            C = cmb(j-1,3*i-1,mod)
            ans += C * pow(25,j-1-(3*i-1),mod) * pow(26,n-(j),mod)
print(ans%mod)
0