結果

問題 No.480 合計
ユーザー Higashi HiroyukiHigashi Hiroyuki
提出日時 2020-06-03 23:00:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 3,006 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-11-26 08:04:40
合計ジャッジ時間 6,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,204 KB
testcase_01 AC 119 ms
54,084 KB
testcase_02 AC 121 ms
54,084 KB
testcase_03 AC 121 ms
54,064 KB
testcase_04 AC 119 ms
53,940 KB
testcase_05 AC 108 ms
52,988 KB
testcase_06 AC 111 ms
52,688 KB
testcase_07 AC 119 ms
53,824 KB
testcase_08 AC 103 ms
52,644 KB
testcase_09 AC 117 ms
54,120 KB
testcase_10 AC 122 ms
53,836 KB
testcase_11 AC 110 ms
52,688 KB
testcase_12 AC 108 ms
52,892 KB
testcase_13 AC 106 ms
52,876 KB
testcase_14 AC 122 ms
53,992 KB
testcase_15 AC 118 ms
54,000 KB
testcase_16 AC 122 ms
54,008 KB
testcase_17 AC 104 ms
52,396 KB
testcase_18 AC 106 ms
54,296 KB
testcase_19 AC 117 ms
54,528 KB
testcase_20 AC 115 ms
53,856 KB
testcase_21 AC 115 ms
53,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Addition {
  public static void main(String[] args) {
    int sum = 0;

    Scanner scanner = new Scanner(System.in);

    int num = scanner.nextInt();

    for (int i = 0; i <= num; i++) {
      sum += i;
    }
    System.out.println(sum);
  }
  
}
0