結果

問題 No.80 四角形を描こう
ユーザー hanorverhanorver
提出日時 2016-05-25 19:34:56
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 57,240 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 14:21:35
合計ジャッジ時間 1,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>

int main() {
	int d;
	std::cin >> d;

	long long ans = 0;

	// 左右の辺の長さ
	for (long long i = 0; i < 1000; i++) {
		// 上下の辺の長さ
		for (long long j = 0; j < 1000; j++) {
			if (i * 2 + j * 2 <= d) ans = std::max(ans, i * j);
		}
	}

	std::cout << ans << std::endl;
}
0