結果

問題 No.111 あばばばば
ユーザー dazydazy
提出日時 2016-09-12 04:22:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 3,031 ms
コンパイル使用メモリ 73,812 KB
実行使用メモリ 41,124 KB
最終ジャッジ日時 2024-11-17 03:49:07
合計ジャッジ時間 4,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,004 KB
testcase_01 AC 116 ms
41,000 KB
testcase_02 AC 114 ms
40,952 KB
testcase_03 AC 108 ms
39,920 KB
testcase_04 AC 105 ms
40,044 KB
testcase_05 AC 115 ms
40,944 KB
testcase_06 AC 117 ms
41,124 KB
testcase_07 AC 118 ms
40,932 KB
testcase_08 AC 102 ms
39,604 KB
testcase_09 AC 115 ms
40,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        long L = scan.nextLong();
        long n = (L-1)/2;
        System.out.println(n *(L - n - 1));
    }
}
0