結果

問題 No.80 四角形を描こう
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-27 00:41:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 56,060 KB
最終ジャッジ日時 2024-06-30 23:01:43
合計ジャッジ時間 5,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,012 KB
testcase_01 AC 134 ms
54,068 KB
testcase_02 AC 133 ms
53,984 KB
testcase_03 AC 131 ms
54,316 KB
testcase_04 AC 130 ms
53,888 KB
testcase_05 AC 130 ms
53,964 KB
testcase_06 AC 135 ms
54,216 KB
testcase_07 AC 135 ms
54,180 KB
testcase_08 AC 130 ms
56,060 KB
testcase_09 AC 133 ms
53,844 KB
testcase_10 AC 133 ms
54,064 KB
testcase_11 AC 134 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No080{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int d = sc.nextInt();
		if(d < 4){
			System.out.println(0);
			return;
		}
		if(d%2 != 0) d--;
		d /= 2;

		if(d%2 == 0){
			System.out.println((d/2)*(d/2));
		}else{
			System.out.println((d/2)*(d/2+1));
		}
	}
}
0