結果

問題 No.2299 Antitypoglycemia
ユーザー くねんじくねんじ
提出日時 2023-05-28 21:50:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-06-08 12:29:45
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 WA -
testcase_02 AC 28 ms
10,368 KB
testcase_03 AC 62 ms
10,368 KB
testcase_04 AC 63 ms
10,368 KB
testcase_05 AC 47 ms
10,368 KB
testcase_06 AC 58 ms
10,496 KB
testcase_07 AC 33 ms
10,368 KB
testcase_08 AC 56 ms
10,368 KB
testcase_09 AC 56 ms
10,368 KB
testcase_10 AC 37 ms
10,240 KB
testcase_11 AC 42 ms
10,368 KB
testcase_12 AC 62 ms
10,368 KB
testcase_13 AC 73 ms
10,368 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 AC 40 ms
10,368 KB
testcase_17 AC 37 ms
10,496 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 75 ms
10,496 KB
testcase_21 AC 72 ms
10,496 KB
testcase_22 WA -
testcase_23 AC 27 ms
10,368 KB
testcase_24 AC 27 ms
10,496 KB
testcase_25 WA -
testcase_26 AC 27 ms
10,368 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, A, B = map(int,input().split())
ans = 1
for i in range(1,N-1):
    ans = (ans * i ) % 998244353
ans = ans *( N * N - (3 * N) + 3) % 998244353
print(ans)

 
 
0