結果

問題 No.111 あばばばば
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-14 01:15:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 73,724 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-11-25 22:08:49
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,040 KB
testcase_01 AC 108 ms
52,684 KB
testcase_02 AC 113 ms
52,920 KB
testcase_03 AC 124 ms
53,812 KB
testcase_04 AC 111 ms
54,372 KB
testcase_05 AC 125 ms
53,844 KB
testcase_06 AC 122 ms
53,760 KB
testcase_07 AC 125 ms
53,548 KB
testcase_08 AC 123 ms
53,980 KB
testcase_09 AC 122 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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