結果

問題 No.2299 Antitypoglycemia
ユーザー pyt-314
提出日時 2023-05-13 21:17:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 86 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,496 KB
最終ジャッジ日時 2024-11-29 12:37:24
合計ジャッジ時間 42,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 1 WA * 4 RE * 8 TLE * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b = map(int,input().split())
out = 1
for i in range(n-2):
	out *= (i+1)
print(out)
0