結果

問題 No.480 合計
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 14:16:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2024-10-06 16:19:29
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,608 KB
testcase_01 AC 123 ms
53,964 KB
testcase_02 AC 116 ms
53,828 KB
testcase_03 AC 123 ms
53,876 KB
testcase_04 AC 117 ms
53,716 KB
testcase_05 AC 116 ms
53,840 KB
testcase_06 AC 110 ms
52,932 KB
testcase_07 AC 119 ms
53,660 KB
testcase_08 AC 118 ms
53,808 KB
testcase_09 AC 114 ms
53,764 KB
testcase_10 AC 104 ms
52,884 KB
testcase_11 AC 105 ms
52,880 KB
testcase_12 AC 98 ms
52,244 KB
testcase_13 AC 103 ms
52,492 KB
testcase_14 AC 109 ms
52,768 KB
testcase_15 AC 114 ms
53,796 KB
testcase_16 AC 116 ms
53,880 KB
testcase_17 AC 107 ms
52,828 KB
testcase_18 AC 101 ms
52,604 KB
testcase_19 AC 117 ms
53,860 KB
testcase_20 AC 112 ms
53,952 KB
testcase_21 AC 108 ms
53,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int sum = 0;
		for (int i=1; i<=n; i++) {
			sum += i;
		}
		System.out.println(sum);
	}
}
0