結果

問題 No.1089 三変数方程式
ユーザー tentententen
提出日時 2020-08-18 15:23:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 2,726 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-10-12 02:47:54
合計ジャッジ時間 5,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,328 KB
testcase_01 AC 115 ms
41,312 KB
testcase_02 AC 129 ms
40,864 KB
testcase_03 AC 128 ms
40,964 KB
testcase_04 AC 125 ms
41,256 KB
testcase_05 AC 118 ms
39,964 KB
testcase_06 AC 128 ms
41,076 KB
testcase_07 AC 126 ms
40,860 KB
testcase_08 AC 128 ms
41,084 KB
testcase_09 AC 125 ms
40,964 KB
testcase_10 AC 127 ms
41,084 KB
testcase_11 AC 114 ms
39,960 KB
testcase_12 AC 125 ms
40,820 KB
testcase_13 AC 128 ms
40,972 KB
testcase_14 AC 128 ms
41,120 KB
testcase_15 AC 131 ms
41,268 KB
testcase_16 AC 129 ms
41,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long ans = 0;
        for (int i = 0; i <= n; i++) {
            ans += n - i + 1;
        }
        System.out.println(ans);
    }
} 
0