結果

問題 No.80 四角形を描こう
ユーザー ぴろずぴろず
提出日時 2014-12-05 11:25:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-10-08 03:56:29
合計ジャッジ時間 4,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,084 KB
testcase_01 AC 137 ms
53,980 KB
testcase_02 AC 132 ms
54,216 KB
testcase_03 AC 132 ms
54,044 KB
testcase_04 AC 133 ms
54,024 KB
testcase_05 AC 136 ms
53,904 KB
testcase_06 AC 136 ms
54,320 KB
testcase_07 AC 138 ms
54,116 KB
testcase_08 AC 162 ms
54,120 KB
testcase_09 AC 137 ms
54,064 KB
testcase_10 AC 140 ms
53,644 KB
testcase_11 AC 138 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no080;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		if (d <= 3) {
			System.out.println(0);
			return;
		}
		d = (d - d % 2) / 2;
		if (d%2 == 0) {
			System.out.println(d*d/4);
		}else{
			System.out.println((d/2)*(d/2+1));
		}
	}

}
0