結果

問題 No.480 合計
ユーザー chamc1984chamc1984
提出日時 2017-12-27 00:45:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 3,359 ms
コンパイル使用メモリ 73,192 KB
実行使用メモリ 37,260 KB
最終ジャッジ日時 2024-05-10 03:40:56
合計ジャッジ時間 5,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,752 KB
testcase_01 AC 51 ms
37,260 KB
testcase_02 AC 52 ms
36,864 KB
testcase_03 AC 52 ms
36,960 KB
testcase_04 AC 52 ms
37,216 KB
testcase_05 AC 50 ms
36,744 KB
testcase_06 AC 51 ms
37,096 KB
testcase_07 AC 50 ms
37,232 KB
testcase_08 AC 50 ms
37,096 KB
testcase_09 AC 51 ms
36,744 KB
testcase_10 AC 50 ms
36,864 KB
testcase_11 AC 52 ms
36,888 KB
testcase_12 AC 50 ms
36,752 KB
testcase_13 AC 51 ms
36,960 KB
testcase_14 AC 49 ms
37,224 KB
testcase_15 AC 50 ms
36,800 KB
testcase_16 AC 50 ms
37,096 KB
testcase_17 AC 50 ms
37,092 KB
testcase_18 AC 50 ms
36,892 KB
testcase_19 AC 51 ms
37,188 KB
testcase_20 AC 51 ms
37,072 KB
testcase_21 AC 51 ms
37,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class YukiCoder480 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub

		// Read INPUT
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		
		try {
			// translate Integer
			int N = Integer.parseInt(br.readLine());
			
			int ans=0;
			// Calculate
			for(int i=1; i<=N; i++) {
				ans+=i;
			}
			
			// output ANSWER
			System.out.println(ans);
			
		} catch(Exception e) {
			System.out.println("error");
		}
		
		return;

	}

}
0