結果

問題 No.480 合計
ユーザー 大澤秀生大澤秀生
提出日時 2021-09-28 01:35:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 3,484 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 50,540 KB
最終ジャッジ日時 2024-07-06 23:13:22
合計ジャッジ時間 5,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,296 KB
testcase_01 AC 47 ms
49,952 KB
testcase_02 AC 45 ms
50,184 KB
testcase_03 AC 43 ms
50,528 KB
testcase_04 AC 44 ms
50,492 KB
testcase_05 AC 46 ms
50,072 KB
testcase_06 AC 45 ms
50,224 KB
testcase_07 AC 46 ms
50,144 KB
testcase_08 AC 44 ms
50,480 KB
testcase_09 AC 44 ms
50,288 KB
testcase_10 AC 43 ms
50,332 KB
testcase_11 AC 46 ms
50,288 KB
testcase_12 AC 46 ms
50,152 KB
testcase_13 AC 45 ms
50,420 KB
testcase_14 AC 44 ms
50,340 KB
testcase_15 AC 45 ms
50,540 KB
testcase_16 AC 45 ms
50,472 KB
testcase_17 AC 44 ms
50,144 KB
testcase_18 AC 45 ms
50,308 KB
testcase_19 AC 45 ms
50,356 KB
testcase_20 AC 45 ms
50,476 KB
testcase_21 AC 47 ms
50,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

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