結果

問題 No.500 階乗電卓
ユーザー kkslucy1kkslucy1
提出日時 2018-03-14 03:53:20
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 208 bytes
コンパイル時間 1,544 ms
コンパイル使用メモリ 157,528 KB
実行使用メモリ 16,960 KB
最終ジャッジ日時 2024-11-24 19:55:18
合計ジャッジ時間 32,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 2 ms
10,020 KB
testcase_05 AC 2 ms
10,016 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 1 ms
10,020 KB
testcase_08 AC 2 ms
13,632 KB
testcase_09 AC 1 ms
10,020 KB
testcase_10 AC 2 ms
13,632 KB
testcase_11 AC 1 ms
9,888 KB
testcase_12 AC 2 ms
13,632 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
	ll n;
	cin >> n;
	ll ans = 1;
	while (n != 0) {
		ans *= n--;
		ans %= 1000000000000;
	}
	cout << ans << endl;


	return 0;
}
0