結果

問題 No.480 合計
ユーザー ShinYonamineShinYonamine
提出日時 2019-09-27 17:56:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-09-24 20:13:21
合計ジャッジ時間 5,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,096 KB
testcase_01 AC 128 ms
53,872 KB
testcase_02 AC 122 ms
53,956 KB
testcase_03 AC 119 ms
54,160 KB
testcase_04 AC 126 ms
54,024 KB
testcase_05 AC 122 ms
54,028 KB
testcase_06 AC 124 ms
54,112 KB
testcase_07 AC 124 ms
54,168 KB
testcase_08 AC 115 ms
53,096 KB
testcase_09 AC 124 ms
54,124 KB
testcase_10 AC 123 ms
54,244 KB
testcase_11 AC 124 ms
54,152 KB
testcase_12 AC 117 ms
52,940 KB
testcase_13 AC 126 ms
53,992 KB
testcase_14 AC 112 ms
53,076 KB
testcase_15 AC 125 ms
54,092 KB
testcase_16 AC 112 ms
53,068 KB
testcase_17 AC 121 ms
54,080 KB
testcase_18 AC 110 ms
53,096 KB
testcase_19 AC 109 ms
52,820 KB
testcase_20 AC 128 ms
54,116 KB
testcase_21 AC 121 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Main {
    public static void main (String[] args) {
        int N = new java.util.Scanner(System.in).nextInt();
        int ans = 0 ;
        for(int i = 0; i<=N; i++){
            ans = ans + i;
            
        }System.out.println(ans);
    }
}
0