結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,360 KB
testcase_01 AC 108 ms
41,396 KB
testcase_02 AC 109 ms
41,736 KB
testcase_03 AC 112 ms
41,656 KB
testcase_04 AC 104 ms
41,440 KB
testcase_05 AC 109 ms
41,232 KB
testcase_06 AC 100 ms
41,088 KB
testcase_07 AC 119 ms
41,240 KB
testcase_08 AC 105 ms
41,544 KB
testcase_09 AC 103 ms
41,484 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