結果

問題 No.80 四角形を描こう
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-19 00:39:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 73,940 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-05-04 20:10:45
合計ジャッジ時間 4,221 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,492 KB
testcase_01 AC 130 ms
41,372 KB
testcase_02 AC 128 ms
41,084 KB
testcase_03 AC 115 ms
40,188 KB
testcase_04 AC 130 ms
41,136 KB
testcase_05 AC 136 ms
41,388 KB
testcase_06 AC 129 ms
41,400 KB
testcase_07 AC 127 ms
41,384 KB
testcase_08 AC 125 ms
41,304 KB
testcase_09 AC 128 ms
41,292 KB
testcase_10 AC 127 ms
41,260 KB
testcase_11 AC 117 ms
40,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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