結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,780 KB
testcase_01 AC 113 ms
40,220 KB
testcase_02 AC 122 ms
40,972 KB
testcase_03 AC 108 ms
39,680 KB
testcase_04 AC 111 ms
39,596 KB
testcase_05 AC 116 ms
40,264 KB
testcase_06 AC 124 ms
41,088 KB
testcase_07 AC 124 ms
40,896 KB
testcase_08 AC 110 ms
40,548 KB
testcase_09 AC 112 ms
40,048 KB
testcase_10 AC 122 ms
40,888 KB
testcase_11 AC 122 ms
40,540 KB
testcase_12 AC 126 ms
40,788 KB
testcase_13 AC 123 ms
40,308 KB
testcase_14 AC 116 ms
40,968 KB
testcase_15 AC 129 ms
41,100 KB
testcase_16 AC 120 ms
40,672 KB
testcase_17 AC 112 ms
40,108 KB
testcase_18 AC 116 ms
41,100 KB
testcase_19 AC 130 ms
41,164 KB
testcase_20 AC 128 ms
41,200 KB
testcase_21 AC 129 ms
41,300 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