結果

問題 No.480 合計
ユーザー ribenngeribennge
提出日時 2018-08-20 19:12:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 3,312 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-11-26 22:12:01
合計ジャッジ時間 5,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,220 KB
testcase_01 AC 102 ms
40,316 KB
testcase_02 AC 105 ms
40,260 KB
testcase_03 AC 115 ms
41,372 KB
testcase_04 AC 102 ms
40,036 KB
testcase_05 AC 114 ms
39,888 KB
testcase_06 AC 112 ms
41,124 KB
testcase_07 AC 115 ms
41,188 KB
testcase_08 AC 99 ms
39,800 KB
testcase_09 AC 102 ms
40,220 KB
testcase_10 AC 97 ms
39,748 KB
testcase_11 AC 109 ms
40,292 KB
testcase_12 AC 101 ms
39,920 KB
testcase_13 AC 115 ms
39,848 KB
testcase_14 AC 113 ms
41,184 KB
testcase_15 AC 104 ms
39,972 KB
testcase_16 AC 116 ms
41,096 KB
testcase_17 AC 112 ms
40,560 KB
testcase_18 AC 109 ms
40,004 KB
testcase_19 AC 119 ms
40,024 KB
testcase_20 AC 117 ms
41,276 KB
testcase_21 AC 120 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class ScannerTest{
	public static void main(String[] args){

		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int sum = 0;

		for(int i = 1;i <= n;i++){
			sum += i;
		}

		System.out.println(sum);
	}
}
0