結果

問題 No.480 合計
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 16:41:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 3,448 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-12-14 09:20:23
合計ジャッジ時間 7,466 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Gokei {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int i = 0 , a = s.nextInt() , sum = 0;
		s.close();
		while(i <= a){
			sum += i++;
		}
		System.out.println(sum);
	}

}
0