結果

問題 No.500 階乗電卓
ユーザー ldsybldsyb
提出日時 2017-04-07 22:32:53
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 63,864 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 01:01:52
合計ジャッジ時間 1,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
	long long n, ans = 1;
	cin >> n;
	if(1230000000 <= n){
		cout << 0 << endl;
		return 0;
	}
	for(long long i = 1; i <= n; i++) (ans *= i) %= 1000000000000;
	cout << ans << endl;
}
0