結果

問題 No.480 合計
ユーザー jimanojimano
提出日時 2018-01-08 13:19:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 7,210 ms
コンパイル使用メモリ 75,032 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-06-06 01:28:55
合計ジャッジ時間 7,504 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,936 KB
testcase_01 AC 107 ms
53,016 KB
testcase_02 AC 117 ms
53,908 KB
testcase_03 AC 118 ms
54,080 KB
testcase_04 AC 111 ms
54,008 KB
testcase_05 AC 101 ms
52,552 KB
testcase_06 AC 123 ms
53,860 KB
testcase_07 AC 119 ms
53,808 KB
testcase_08 AC 124 ms
54,240 KB
testcase_09 AC 123 ms
53,948 KB
testcase_10 AC 128 ms
53,828 KB
testcase_11 AC 113 ms
52,908 KB
testcase_12 AC 109 ms
52,704 KB
testcase_13 AC 120 ms
53,676 KB
testcase_14 AC 120 ms
54,044 KB
testcase_15 AC 110 ms
52,824 KB
testcase_16 AC 120 ms
53,952 KB
testcase_17 AC 120 ms
54,108 KB
testcase_18 AC 120 ms
53,784 KB
testcase_19 AC 119 ms
53,892 KB
testcase_20 AC 108 ms
52,924 KB
testcase_21 AC 122 ms
53,904 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