結果

問題 No.111 あばばばば
ユーザー yagi2yagi2
提出日時 2017-04-25 11:55:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,583 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-09-13 08:39:14
合計ジャッジ時間 7,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,916 KB
testcase_01 AC 127 ms
53,860 KB
testcase_02 AC 135 ms
54,100 KB
testcase_03 AC 2,583 ms
53,900 KB
testcase_04 AC 126 ms
54,136 KB
testcase_05 AC 135 ms
54,256 KB
testcase_06 AC 143 ms
53,784 KB
testcase_07 AC 372 ms
54,280 KB
testcase_08 AC 1,263 ms
52,836 KB
testcase_09 AC 126 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Long L = Long.parseLong(sc.next());

        long cnt = 0;
        for (int i = 3; i <= L; i++) {
            if (i % 2 == 0) continue;
            cnt += L - i + 1;
        }
        System.out.println(cnt);
    }
}
0