結果

問題 No.80 四角形を描こう
ユーザー fjafjafjafjafjafja
提出日時 2017-10-06 15:28:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 219 bytes
コンパイル時間 4,385 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-11-17 00:31:17
合計ジャッジ時間 6,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,800 KB
testcase_01 AC 118 ms
40,876 KB
testcase_02 AC 118 ms
41,108 KB
testcase_03 AC 110 ms
40,004 KB
testcase_04 AC 119 ms
40,952 KB
testcase_05 AC 109 ms
39,656 KB
testcase_06 AC 117 ms
40,748 KB
testcase_07 AC 117 ms
40,764 KB
testcase_08 AC 123 ms
40,656 KB
testcase_09 AC 107 ms
40,096 KB
testcase_10 AC 116 ms
41,212 KB
testcase_11 AC 124 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N80 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d=sc.nextInt();
		d=(d%2==1)?((d-1)/2):d/2;
		System.out.println((d/2)*(d-d/2));
	}
}
0