結果

問題 No.480 合計
ユーザー mhayamhaya
提出日時 2019-04-21 06:52:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-10-04 14:59:07
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,688 KB
testcase_01 AC 97 ms
53,016 KB
testcase_02 AC 106 ms
54,036 KB
testcase_03 AC 107 ms
53,784 KB
testcase_04 AC 109 ms
54,080 KB
testcase_05 AC 109 ms
54,136 KB
testcase_06 AC 109 ms
54,140 KB
testcase_07 AC 117 ms
54,120 KB
testcase_08 AC 111 ms
53,948 KB
testcase_09 AC 93 ms
52,680 KB
testcase_10 AC 105 ms
52,980 KB
testcase_11 AC 110 ms
53,904 KB
testcase_12 AC 98 ms
53,056 KB
testcase_13 AC 106 ms
54,076 KB
testcase_14 AC 108 ms
54,024 KB
testcase_15 AC 108 ms
53,960 KB
testcase_16 AC 101 ms
52,708 KB
testcase_17 AC 107 ms
54,072 KB
testcase_18 AC 111 ms
54,084 KB
testcase_19 AC 106 ms
54,208 KB
testcase_20 AC 97 ms
53,284 KB
testcase_21 AC 105 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Study {

	public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int s = 0;
        for (int i = 0; i < a; i++) {
        	s += i + 1;
        }

        System.out.println(s);
	}

}
0