結果

問題 No.111 あばばばば
ユーザー tentententen
提出日時 2021-02-09 11:20:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-07-06 16:24:03
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,840 KB
testcase_01 AC 105 ms
52,944 KB
testcase_02 AC 103 ms
53,052 KB
testcase_03 AC 112 ms
53,616 KB
testcase_04 AC 113 ms
54,220 KB
testcase_05 AC 107 ms
53,296 KB
testcase_06 AC 96 ms
52,584 KB
testcase_07 AC 106 ms
53,348 KB
testcase_08 AC 103 ms
52,912 KB
testcase_09 AC 114 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long ans;
        if (n % 2 == 0) {
            long base = (n - 2) / 2;
            ans = (1 + base) * base;
        } else {
            long base = (n - 2) / 2;
            ans = (1 + base) * base;
            ans += n / 2;
        }
        System.out.println(ans);
    }
}
0