結果

問題 No.480 合計
ユーザー jimanojimano
提出日時 2018-01-08 13:15:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-06-06 01:29:09
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,052 KB
testcase_01 AC 134 ms
54,036 KB
testcase_02 AC 130 ms
53,944 KB
testcase_03 AC 130 ms
54,140 KB
testcase_04 AC 129 ms
54,200 KB
testcase_05 AC 127 ms
53,908 KB
testcase_06 AC 128 ms
53,980 KB
testcase_07 AC 129 ms
54,048 KB
testcase_08 AC 126 ms
53,904 KB
testcase_09 AC 124 ms
54,044 KB
testcase_10 AC 121 ms
53,956 KB
testcase_11 AC 123 ms
53,872 KB
testcase_12 AC 131 ms
54,108 KB
testcase_13 AC 125 ms
54,176 KB
testcase_14 AC 127 ms
54,032 KB
testcase_15 AC 111 ms
52,864 KB
testcase_16 AC 126 ms
53,972 KB
testcase_17 AC 131 ms
53,968 KB
testcase_18 AC 132 ms
54,160 KB
testcase_19 AC 130 ms
54,200 KB
testcase_20 AC 131 ms
54,340 KB
testcase_21 AC 134 ms
54,056 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();

		System.out.println(IntStream.rangeClosed(1, N).sum());
	}
}
0