結果

問題 No.480 合計
ユーザー tentententen
提出日時 2020-11-11 17:28:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 1,878 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-22 18:33:52
合計ジャッジ時間 4,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
39,924 KB
testcase_01 AC 110 ms
41,236 KB
testcase_02 AC 100 ms
41,248 KB
testcase_03 AC 97 ms
41,432 KB
testcase_04 AC 111 ms
41,248 KB
testcase_05 AC 99 ms
41,060 KB
testcase_06 AC 109 ms
41,208 KB
testcase_07 AC 96 ms
41,160 KB
testcase_08 AC 99 ms
41,224 KB
testcase_09 AC 112 ms
41,300 KB
testcase_10 AC 109 ms
41,236 KB
testcase_11 AC 110 ms
41,240 KB
testcase_12 AC 112 ms
41,380 KB
testcase_13 AC 108 ms
41,204 KB
testcase_14 AC 107 ms
41,156 KB
testcase_15 AC 112 ms
40,300 KB
testcase_16 AC 99 ms
41,204 KB
testcase_17 AC 108 ms
40,240 KB
testcase_18 AC 99 ms
41,612 KB
testcase_19 AC 112 ms
41,336 KB
testcase_20 AC 99 ms
41,252 KB
testcase_21 AC 110 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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