結果

問題 No.80 四角形を描こう
ユーザー Mcpu3Mcpu3
提出日時 2018-06-21 23:12:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 319 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 73,568 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-06-30 17:45:27
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,108 KB
testcase_01 AC 128 ms
41,056 KB
testcase_02 AC 117 ms
39,692 KB
testcase_03 AC 131 ms
41,040 KB
testcase_04 AC 131 ms
41,240 KB
testcase_05 AC 129 ms
41,416 KB
testcase_06 AC 124 ms
40,992 KB
testcase_07 AC 129 ms
41,324 KB
testcase_08 AC 124 ms
41,032 KB
testcase_09 AC 122 ms
40,856 KB
testcase_10 AC 126 ms
40,976 KB
testcase_11 AC 127 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no80{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int d,x,y;
		d=stdIn.nextInt();
		x=d/4;
		y=d/4;
		while(true) {
			if((x+y+1)*2<=d) x++;
			else break;
			if((x+y+1)*2<=d) y++;
			else break;
		}
		System.out.print(x*y);
	}
}
0