結果

問題 No.502 階乗を計算するだけ
コンテスト
ユーザー tansunogon
提出日時 2017-05-05 02:49:09
言語 C++11
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
TLE  
実行時間 -
コード長 334 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 268 ms
コンパイル使用メモリ 69,856 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-26 22:49:42
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 32 TLE * 1 -- * 19
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
using namespace std;

struct iostream_init_struct
{ 
	iostream_init_struct()
	{
		std::cin.tie(0);
		std::cin.sync_with_stdio(false);
	}
} iostream_init;

int main(void)
{
	long long n;
	cin >> n;
	long long ans = 1;
	for (long long i = 2; i <= n; ++i)
	{
		ans = (ans * i) % 1000000007;
	}
	cout << ans << endl;
}
0