結果

問題 No.1348 Split Tile
ユーザー titiatitia
提出日時 2022-03-31 00:29:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-11-15 16:56:10
合計ジャッジ時間 20,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 666 ms
89,216 KB
testcase_01 AC 668 ms
89,216 KB
testcase_02 AC 659 ms
89,216 KB
testcase_03 AC 654 ms
89,216 KB
testcase_04 AC 664 ms
89,216 KB
testcase_05 AC 656 ms
89,216 KB
testcase_06 AC 652 ms
89,216 KB
testcase_07 AC 687 ms
89,216 KB
testcase_08 AC 668 ms
89,216 KB
testcase_09 AC 662 ms
89,216 KB
testcase_10 AC 687 ms
89,216 KB
testcase_11 AC 665 ms
89,216 KB
testcase_12 AC 664 ms
89,216 KB
testcase_13 AC 678 ms
89,216 KB
testcase_14 AC 661 ms
89,216 KB
testcase_15 AC 646 ms
89,216 KB
testcase_16 AC 640 ms
89,216 KB
testcase_17 AC 648 ms
89,216 KB
testcase_18 AC 624 ms
89,216 KB
testcase_19 AC 639 ms
89,216 KB
testcase_20 AC 652 ms
89,216 KB
testcase_21 AC 634 ms
89,216 KB
testcase_22 AC 628 ms
89,216 KB
testcase_23 AC 684 ms
89,216 KB
testcase_24 AC 625 ms
89,216 KB
testcase_25 AC 619 ms
89,216 KB
testcase_26 AC 619 ms
89,216 KB
testcase_27 AC 630 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 実験エスパー

N=int(input())
mod=998244353

FACT=[1]
for i in range(1,2*10**6+1):
    FACT.append(FACT[-1]*i%mod)

X=(3+(3+N-2))*(N-1)*pow(2,mod-2,mod)

print(X*pow(3,mod-2,mod)*FACT[N]%mod)
0