結果

問題 No.480 合計
ユーザー jimanojimano
提出日時 2018-01-08 13:21:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 3,516 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-06-06 01:29:39
合計ジャッジ時間 6,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,036 KB
testcase_01 AC 110 ms
40,144 KB
testcase_02 AC 120 ms
41,236 KB
testcase_03 AC 124 ms
41,276 KB
testcase_04 AC 127 ms
41,488 KB
testcase_05 AC 113 ms
40,172 KB
testcase_06 AC 124 ms
41,252 KB
testcase_07 AC 123 ms
41,412 KB
testcase_08 AC 123 ms
41,312 KB
testcase_09 AC 122 ms
41,328 KB
testcase_10 AC 121 ms
41,156 KB
testcase_11 AC 118 ms
41,228 KB
testcase_12 AC 104 ms
39,884 KB
testcase_13 AC 120 ms
41,040 KB
testcase_14 AC 118 ms
41,176 KB
testcase_15 AC 118 ms
40,984 KB
testcase_16 AC 126 ms
41,252 KB
testcase_17 AC 124 ms
41,492 KB
testcase_18 AC 112 ms
40,172 KB
testcase_19 AC 123 ms
41,200 KB
testcase_20 AC 123 ms
41,500 KB
testcase_21 AC 110 ms
39,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

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