結果

問題 No.480 合計
ユーザー oyafusooyafuso
提出日時 2019-03-11 09:45:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 1,831 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-06-23 15:25:03
合計ジャッジ時間 5,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,016 KB
testcase_01 AC 119 ms
53,968 KB
testcase_02 AC 123 ms
54,100 KB
testcase_03 AC 125 ms
54,356 KB
testcase_04 AC 121 ms
54,052 KB
testcase_05 AC 119 ms
54,064 KB
testcase_06 AC 117 ms
54,180 KB
testcase_07 AC 118 ms
54,036 KB
testcase_08 AC 120 ms
54,080 KB
testcase_09 AC 114 ms
52,648 KB
testcase_10 AC 111 ms
52,708 KB
testcase_11 AC 121 ms
53,976 KB
testcase_12 AC 122 ms
53,924 KB
testcase_13 AC 110 ms
52,720 KB
testcase_14 AC 119 ms
53,960 KB
testcase_15 AC 120 ms
54,040 KB
testcase_16 AC 127 ms
54,176 KB
testcase_17 AC 123 ms
54,112 KB
testcase_18 AC 120 ms
53,980 KB
testcase_19 AC 122 ms
53,776 KB
testcase_20 AC 119 ms
53,884 KB
testcase_21 AC 115 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		int input = Integer.parseInt(sc.nextLine());
		// Scannerクローズ
		sc.close();

		// 結果
		int result = 0;
		// 1からinputまで合計
		for (int i = 1; i <= input; i++) {
			result += i;
		}

		// 出力
		System.out.println(result);
	}
}
0