結果

問題 No.80 四角形を描こう
ユーザー htensaihtensai
提出日時 2019-12-06 08:58:23
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-12-23 04:59:42
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,332 KB
testcase_01 AC 132 ms
41,032 KB
testcase_02 AC 117 ms
40,732 KB
testcase_03 AC 124 ms
41,096 KB
testcase_04 AC 124 ms
40,776 KB
testcase_05 AC 127 ms
41,184 KB
testcase_06 AC 122 ms
41,088 KB
testcase_07 AC 133 ms
41,264 KB
testcase_08 AC 135 ms
40,980 KB
testcase_09 AC 127 ms
41,012 KB
testcase_10 AC 128 ms
41,344 KB
testcase_11 AC 125 ms
40,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int half = n / 2;
		int a = half / 2;
		int b = half - a;
		System.out.println(a * b);
   }
}

0