結果

問題 No.80 四角形を描こう
ユーザー soujikisoujiki
提出日時 2015-06-23 17:48:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 75,776 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-10-08 04:04:30
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,812 KB
testcase_01 AC 107 ms
53,140 KB
testcase_02 AC 107 ms
52,896 KB
testcase_03 AC 121 ms
54,024 KB
testcase_04 AC 122 ms
53,664 KB
testcase_05 AC 119 ms
53,876 KB
testcase_06 AC 123 ms
54,092 KB
testcase_07 AC 120 ms
53,816 KB
testcase_08 AC 120 ms
53,920 KB
testcase_09 AC 112 ms
52,888 KB
testcase_10 AC 120 ms
53,988 KB
testcase_11 AC 120 ms
53,936 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