結果
| 問題 | No.1357 Nada junior high school entrance examination 3rd day | 
| コンテスト | |
| ユーザー |  gew1fw | 
| 提出日時 | 2025-06-12 15:53:30 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 173 bytes | 
| コンパイル時間 | 406 ms | 
| コンパイル使用メモリ | 82,688 KB | 
| 実行使用メモリ | 62,336 KB | 
| 最終ジャッジ日時 | 2025-06-12 15:53:33 | 
| 合計ジャッジ時間 | 3,103 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | WA * 21 | 
ソースコード
MOD = 998244353
K = int(input())
ans = [0] * (2 * K + 1)
if K >= 1:
    # c_2 = 1/6 mod MOD
    inv6 = pow(6, MOD-2, MOD)
    ans[2] = inv6
print(' '.join(map(str, ans)))
            
            
            
        