結果

問題 No.523 LED
ユーザー YukiDarumaYukiDaruma
提出日時 2017-06-02 23:24:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 1,507 ms
コンパイル使用メモリ 165,904 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 03:23:17
合計ジャッジ時間 2,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main( int argc, char *argv[] )
{
long long i;
long long j;
long long N;
long long X;
long long iAns;
const long long iMod = 1000000007;

	ios::sync_with_stdio( false );
	cin.tie( 0 );

	cin >> N;

	iAns = 1;
	for( i = 1; i < N; i++ )
	{
		j = i * 2;
		X = ( j + 1 ) * ( j + 2 ) / 2;
		X %= iMod;
		iAns *= X;
		iAns %= iMod;
	}

	cout << iAns << endl;

	return 0;
}


0