結果

問題 No.80 四角形を描こう
ユーザー soujikisoujiki
提出日時 2015-06-23 17:48:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 76,820 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-04-16 22:28:42
合計ジャッジ時間 4,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,472 KB
testcase_01 AC 123 ms
41,364 KB
testcase_02 AC 125 ms
41,264 KB
testcase_03 AC 113 ms
40,060 KB
testcase_04 AC 125 ms
41,372 KB
testcase_05 AC 126 ms
41,056 KB
testcase_06 AC 122 ms
41,316 KB
testcase_07 AC 129 ms
41,508 KB
testcase_08 AC 128 ms
41,376 KB
testcase_09 AC 127 ms
41,568 KB
testcase_10 AC 124 ms
41,424 KB
testcase_11 AC 126 ms
41,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import static java.util.Arrays.*;

class Main{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		PrintWriter out = new PrintWriter(System.out);
		int D = Integer.parseInt(stdIn.next());
		int max = 0;
		for(int i=1;i<=D/2;i++){
			int s = i*(D/2-i);
			if(max<s){
				max = s;
			}
		}
		out.println(max);
		out.flush(); 
	}
}
0