結果

問題 No.80 四角形を描こう
ユーザー GrenacheGrenache
提出日時 2015-11-06 20:21:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 3,627 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-10-08 05:00:13
合計ジャッジ時間 6,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,400 KB
testcase_01 AC 134 ms
41,192 KB
testcase_02 AC 132 ms
41,120 KB
testcase_03 AC 132 ms
41,404 KB
testcase_04 AC 133 ms
41,076 KB
testcase_05 AC 131 ms
41,160 KB
testcase_06 AC 134 ms
41,016 KB
testcase_07 AC 134 ms
41,192 KB
testcase_08 AC 135 ms
41,124 KB
testcase_09 AC 137 ms
41,020 KB
testcase_10 AC 135 ms
40,904 KB
testcase_11 AC 135 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder80 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int d = sc.nextInt();

        int xy = d / 2;
        int x = xy / 2;
        int y = xy - x;

        System.out.println(x * y);

        sc.close();
    }
}
0