結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,904 KB
testcase_01 AC 121 ms
41,180 KB
testcase_02 AC 118 ms
41,196 KB
testcase_03 AC 118 ms
40,832 KB
testcase_04 AC 117 ms
41,072 KB
testcase_05 AC 107 ms
41,032 KB
testcase_06 AC 120 ms
41,256 KB
testcase_07 AC 112 ms
41,040 KB
testcase_08 AC 115 ms
41,040 KB
testcase_09 AC 118 ms
41,124 KB
testcase_10 AC 109 ms
39,632 KB
testcase_11 AC 109 ms
40,180 KB
testcase_12 AC 117 ms
40,916 KB
testcase_13 AC 119 ms
40,908 KB
testcase_14 AC 110 ms
40,296 KB
testcase_15 AC 121 ms
41,012 KB
testcase_16 AC 117 ms
41,244 KB
testcase_17 AC 120 ms
41,112 KB
testcase_18 AC 121 ms
40,876 KB
testcase_19 AC 117 ms
41,216 KB
testcase_20 AC 112 ms
40,908 KB
testcase_21 AC 108 ms
40,616 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