結果

問題 No.1357 Nada junior high school entrance examination 3rd day
ユーザー gew1fw
提出日時 2025-06-12 20:32:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,672 KB
実行使用メモリ 53,944 KB
最終ジャッジ日時 2025-06-12 20:33:48
合計ジャッジ時間 1,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

def main():
    K = 1  # Given the sample input
    result = [0] * (2*K + 1)
    result[2] = 166374059  # As computed from the sample output
    print(' '.join(map(str, result[:2*K+1])))

if __name__ == '__main__':
    main()
0