結果

問題 No.111 あばばばば
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 09:26:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 268 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 73,476 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-07-04 03:34:32
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,964 KB
testcase_01 AC 110 ms
41,104 KB
testcase_02 AC 113 ms
40,868 KB
testcase_03 AC 118 ms
41,324 KB
testcase_04 AC 121 ms
41,184 KB
testcase_05 AC 119 ms
41,136 KB
testcase_06 AC 101 ms
40,100 KB
testcase_07 AC 124 ms
41,816 KB
testcase_08 AC 124 ms
41,428 KB
testcase_09 AC 125 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int l = koko.nextInt();
       long n = (l-1)/2;
       long kai = n*n;
       System.out.println(kai);
    }
}
0