結果

問題 No.80 四角形を描こう
ユーザー m2543315647m2543315647
提出日時 2015-05-22 16:15:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 3,868 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 54,620 KB
最終ジャッジ日時 2024-10-08 04:02:38
合計ジャッジ時間 5,724 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,916 KB
testcase_01 AC 133 ms
53,840 KB
testcase_02 AC 133 ms
54,160 KB
testcase_03 AC 135 ms
54,092 KB
testcase_04 AC 141 ms
53,816 KB
testcase_05 AC 142 ms
54,116 KB
testcase_06 AC 134 ms
53,932 KB
testcase_07 AC 135 ms
54,088 KB
testcase_08 AC 143 ms
54,236 KB
testcase_09 AC 141 ms
54,620 KB
testcase_10 AC 137 ms
53,784 KB
testcase_11 AC 134 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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