結果

問題 No.80 四角形を描こう
ユーザー tentententen
提出日時 2020-11-17 13:44:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-07-23 08:14:43
合計ジャッジ時間 4,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,224 KB
testcase_01 AC 131 ms
54,240 KB
testcase_02 AC 129 ms
54,180 KB
testcase_03 AC 130 ms
54,168 KB
testcase_04 AC 132 ms
54,220 KB
testcase_05 AC 134 ms
54,260 KB
testcase_06 AC 133 ms
53,956 KB
testcase_07 AC 130 ms
54,180 KB
testcase_08 AC 132 ms
54,040 KB
testcase_09 AC 133 ms
54,096 KB
testcase_10 AC 134 ms
53,960 KB
testcase_11 AC 119 ms
52,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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