結果

問題 No.480 合計
ユーザー nogisunnogisun
提出日時 2020-03-19 09:55:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 3,500 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-05-08 03:07:32
合計ジャッジ時間 6,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,520 KB
testcase_01 AC 120 ms
41,436 KB
testcase_02 AC 118 ms
41,488 KB
testcase_03 AC 123 ms
41,224 KB
testcase_04 AC 120 ms
41,644 KB
testcase_05 AC 108 ms
41,504 KB
testcase_06 AC 114 ms
41,220 KB
testcase_07 AC 110 ms
41,648 KB
testcase_08 AC 112 ms
41,572 KB
testcase_09 AC 111 ms
41,524 KB
testcase_10 AC 127 ms
41,356 KB
testcase_11 AC 125 ms
41,248 KB
testcase_12 AC 121 ms
41,208 KB
testcase_13 AC 121 ms
41,580 KB
testcase_14 AC 126 ms
41,520 KB
testcase_15 AC 121 ms
41,540 KB
testcase_16 AC 118 ms
41,468 KB
testcase_17 AC 120 ms
41,344 KB
testcase_18 AC 126 ms
41,760 KB
testcase_19 AC 110 ms
41,364 KB
testcase_20 AC 117 ms
41,612 KB
testcase_21 AC 121 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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