結果

問題 No.480 合計
ユーザー jimanojimano
提出日時 2018-01-08 13:19:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 3,364 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-12-23 12:08:59
合計ジャッジ時間 7,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,972 KB
testcase_01 AC 128 ms
40,876 KB
testcase_02 AC 135 ms
40,880 KB
testcase_03 AC 127 ms
41,184 KB
testcase_04 AC 128 ms
41,352 KB
testcase_05 AC 124 ms
41,016 KB
testcase_06 AC 122 ms
40,824 KB
testcase_07 AC 130 ms
40,888 KB
testcase_08 AC 129 ms
40,956 KB
testcase_09 AC 121 ms
39,880 KB
testcase_10 AC 129 ms
41,044 KB
testcase_11 AC 117 ms
39,604 KB
testcase_12 AC 119 ms
39,728 KB
testcase_13 AC 127 ms
41,064 KB
testcase_14 AC 119 ms
40,768 KB
testcase_15 AC 132 ms
40,968 KB
testcase_16 AC 116 ms
40,024 KB
testcase_17 AC 129 ms
40,944 KB
testcase_18 AC 136 ms
41,608 KB
testcase_19 AC 136 ms
41,596 KB
testcase_20 AC 135 ms
41,008 KB
testcase_21 AC 131 ms
41,184 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(n * (n + 1) / 2);
	}
}
0