結果

問題 No.111 あばばばば
ユーザー atkrymatkrym
提出日時 2016-10-25 21:44:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 2,563 ms
コンパイル使用メモリ 78,120 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-11-24 03:38:23
合計ジャッジ時間 5,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,104 KB
testcase_01 AC 130 ms
41,056 KB
testcase_02 AC 128 ms
41,060 KB
testcase_03 WA -
testcase_04 AC 130 ms
40,972 KB
testcase_05 AC 115 ms
39,844 KB
testcase_06 AC 130 ms
41,180 KB
testcase_07 AC 131 ms
41,008 KB
testcase_08 WA -
testcase_09 AC 128 ms
41,280 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