結果

問題 No.480 合計
ユーザー mhaya180mhaya180
提出日時 2018-07-28 07:51:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-07-05 18:15:27
合計ジャッジ時間 5,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,880 KB
testcase_01 AC 116 ms
40,772 KB
testcase_02 AC 127 ms
41,128 KB
testcase_03 AC 124 ms
41,212 KB
testcase_04 AC 124 ms
41,076 KB
testcase_05 AC 126 ms
41,136 KB
testcase_06 AC 126 ms
40,972 KB
testcase_07 AC 111 ms
39,964 KB
testcase_08 AC 123 ms
41,276 KB
testcase_09 AC 121 ms
41,036 KB
testcase_10 AC 125 ms
41,112 KB
testcase_11 AC 121 ms
40,952 KB
testcase_12 AC 120 ms
41,276 KB
testcase_13 AC 123 ms
41,348 KB
testcase_14 AC 124 ms
41,104 KB
testcase_15 AC 115 ms
40,336 KB
testcase_16 AC 122 ms
41,156 KB
testcase_17 AC 123 ms
41,156 KB
testcase_18 AC 122 ms
41,284 KB
testcase_19 AC 115 ms
39,868 KB
testcase_20 AC 127 ms
41,144 KB
testcase_21 AC 112 ms
40,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main (String[] arg) {
        
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        
        int r = 0;
        
        for(int i=0; i<a; i++) {
            r += i+1;
        }
        
        System.out.println(r);
    }
}
0