結果

問題 No.71 そろばん
ユーザー KlayKlay
提出日時 2017-05-01 13:41:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 9 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 54,860 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-14 01:51:33
合計ジャッジ時間 1,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 9 ms
11,264 KB
testcase_03 AC 5 ms
6,528 KB
testcase_04 AC 6 ms
7,808 KB
testcase_05 AC 8 ms
9,856 KB
testcase_06 AC 8 ms
10,880 KB
testcase_07 AC 6 ms
8,192 KB
testcase_08 AC 5 ms
6,912 KB
testcase_09 AC 8 ms
10,496 KB
testcase_10 AC 6 ms
7,680 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,632 KB
testcase_13 AC 8 ms
10,880 KB
testcase_14 AC 4 ms
6,400 KB
testcase_15 AC 7 ms
9,216 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 5 ms
6,784 KB
testcase_18 AC 8 ms
9,600 KB
testcase_19 AC 8 ms
10,752 KB
testcase_20 AC 8 ms
10,496 KB
testcase_21 AC 4 ms
6,784 KB
testcase_22 AC 7 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main(void)
{
	unsigned long long N;
	
	std::cin >> N;
	
	unsigned long long a[N];
	unsigned long long a_max = 0;
	
	for(unsigned long long i = 0; i <= N; i ++)	//upper = N
	{
		a[i] = (i + 1) * (N - i + 1);
		
		//for debug
		//std::cout << a[i] << std::endl;
		
		if(a[i] > a_max)
		{
			a_max = a[i];
		}
	}
	
	std::cout << a_max - 1;

	return 0;
}
0