結果

問題 No.502 階乗を計算するだけ
コンテスト
ユーザー tansunogon
提出日時 2017-05-05 02:49:09
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
TLE  
実行時間 -
コード長 334 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 354 ms
コンパイル使用メモリ 70,564 KB
実行使用メモリ 7,968 KB
最終ジャッジ日時 2026-04-04 11:10:28
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_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