結果

問題 No.480 合計
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 14:39:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-06-24 12:44:40
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,888 KB
testcase_01 AC 138 ms
54,208 KB
testcase_02 AC 135 ms
54,056 KB
testcase_03 AC 132 ms
54,328 KB
testcase_04 AC 132 ms
53,944 KB
testcase_05 AC 139 ms
54,188 KB
testcase_06 AC 133 ms
54,100 KB
testcase_07 AC 132 ms
54,236 KB
testcase_08 AC 134 ms
54,316 KB
testcase_09 AC 135 ms
54,088 KB
testcase_10 AC 136 ms
54,152 KB
testcase_11 AC 135 ms
54,164 KB
testcase_12 AC 135 ms
54,028 KB
testcase_13 AC 135 ms
54,156 KB
testcase_14 AC 131 ms
54,092 KB
testcase_15 AC 132 ms
54,228 KB
testcase_16 AC 133 ms
54,172 KB
testcase_17 AC 133 ms
54,192 KB
testcase_18 AC 137 ms
54,192 KB
testcase_19 AC 138 ms
54,332 KB
testcase_20 AC 134 ms
54,144 KB
testcase_21 AC 132 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No480 {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        int num = sc.nextInt();
        int sum = 0;
        for(int i=1; i<=num; i++) {
        	sum += i;
        }

        // 標準出力に書き出す。
        System.out.println(sum);
	}
}
0