結果

問題 No.480 合計
ユーザー kitamoto0407kitamoto0407
提出日時 2022-07-11 15:08:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 37,220 KB
最終ジャッジ日時 2024-06-13 04:17:50
合計ジャッジ時間 4,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,104 KB
testcase_01 AC 48 ms
37,220 KB
testcase_02 AC 48 ms
36,896 KB
testcase_03 AC 49 ms
36,800 KB
testcase_04 AC 49 ms
36,868 KB
testcase_05 AC 50 ms
36,732 KB
testcase_06 AC 50 ms
37,048 KB
testcase_07 AC 50 ms
37,056 KB
testcase_08 AC 50 ms
37,144 KB
testcase_09 AC 50 ms
36,924 KB
testcase_10 AC 49 ms
37,068 KB
testcase_11 AC 50 ms
36,672 KB
testcase_12 AC 50 ms
36,640 KB
testcase_13 AC 50 ms
37,064 KB
testcase_14 AC 49 ms
37,140 KB
testcase_15 AC 48 ms
36,620 KB
testcase_16 AC 48 ms
37,172 KB
testcase_17 AC 48 ms
36,896 KB
testcase_18 AC 50 ms
36,756 KB
testcase_19 AC 50 ms
36,632 KB
testcase_20 AC 49 ms
36,648 KB
testcase_21 AC 50 ms
37,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        
        int n = Integer.parseInt(br.readLine());
        
        System.out.println(n * (n + 1) / 2);
    }
}
0