結果

問題 No.480 合計
ユーザー ShotaroSuzuShotaroSuzu
提出日時 2020-05-19 17:11:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-10-01 22:53:13
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,904 KB
testcase_01 AC 138 ms
53,960 KB
testcase_02 AC 137 ms
53,960 KB
testcase_03 AC 137 ms
53,768 KB
testcase_04 AC 134 ms
53,744 KB
testcase_05 AC 133 ms
54,060 KB
testcase_06 AC 133 ms
53,900 KB
testcase_07 AC 134 ms
53,812 KB
testcase_08 AC 136 ms
53,764 KB
testcase_09 AC 137 ms
53,728 KB
testcase_10 AC 136 ms
53,868 KB
testcase_11 AC 138 ms
53,852 KB
testcase_12 AC 137 ms
53,856 KB
testcase_13 AC 136 ms
54,152 KB
testcase_14 AC 136 ms
53,788 KB
testcase_15 AC 135 ms
53,916 KB
testcase_16 AC 135 ms
54,116 KB
testcase_17 AC 136 ms
53,896 KB
testcase_18 AC 136 ms
53,992 KB
testcase_19 AC 136 ms
53,872 KB
testcase_20 AC 135 ms
53,988 KB
testcase_21 AC 136 ms
53,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.tutorial.sum;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		new Main().execute();
	}

	private void execute() {
		@SuppressWarnings("resource")
		Scanner sc = new Scanner(System.in);

		long inNum = sc.nextInt();

		long sum = 0L;
		for (int i = 1; i <= inNum; i++) {
			sum += i;
		}
		System.out.println(sum);
	}

}
0