結果

問題 No.480 合計
ユーザー nesaianesaia
提出日時 2017-04-17 15:24:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 3,104 ms
コンパイル使用メモリ 75,032 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-05-08 07:23:54
合計ジャッジ時間 5,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,980 KB
testcase_01 AC 53 ms
49,888 KB
testcase_02 AC 52 ms
50,088 KB
testcase_03 AC 52 ms
49,972 KB
testcase_04 AC 52 ms
50,248 KB
testcase_05 AC 52 ms
50,280 KB
testcase_06 AC 53 ms
50,088 KB
testcase_07 AC 51 ms
50,180 KB
testcase_08 AC 52 ms
50,208 KB
testcase_09 AC 53 ms
50,012 KB
testcase_10 AC 51 ms
50,080 KB
testcase_11 AC 52 ms
50,240 KB
testcase_12 AC 52 ms
50,212 KB
testcase_13 AC 53 ms
49,976 KB
testcase_14 AC 52 ms
49,912 KB
testcase_15 AC 52 ms
50,216 KB
testcase_16 AC 52 ms
49,752 KB
testcase_17 AC 51 ms
50,304 KB
testcase_18 AC 51 ms
50,164 KB
testcase_19 AC 51 ms
49,816 KB
testcase_20 AC 52 ms
50,240 KB
testcase_21 AC 53 ms
50,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.480 合計
//https://yukicoder.me/problems/no/480
//20170417 1519

package no480;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No480 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String inLine;
		int n;
		int sum = 0;

		inLine = br.readLine();
		
		n = Integer.parseInt(inLine);
		
		for(int i = 1; i <= n; i++){
			sum += i;
		}
		System.out.print(sum);
	}
}
0