結果

問題 No.111 あばばばば
ユーザー atkrymatkrym
提出日時 2016-10-25 21:44:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-05-03 06:03:15
合計ジャッジ時間 4,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
39,964 KB
testcase_01 AC 130 ms
40,952 KB
testcase_02 AC 135 ms
41,032 KB
testcase_03 WA -
testcase_04 AC 131 ms
41,400 KB
testcase_05 AC 131 ms
41,400 KB
testcase_06 AC 131 ms
41,124 KB
testcase_07 AC 121 ms
40,108 KB
testcase_08 WA -
testcase_09 AC 133 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int l = sc.nextInt();
        System.out.println((long)Math.pow((l-1)/2,2));
    }
}
0