結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,188 KB
testcase_01 AC 112 ms
40,776 KB
testcase_02 AC 113 ms
41,284 KB
testcase_03 AC 97 ms
39,884 KB
testcase_04 AC 113 ms
41,028 KB
testcase_05 AC 115 ms
41,052 KB
testcase_06 AC 112 ms
41,348 KB
testcase_07 AC 104 ms
40,180 KB
testcase_08 AC 111 ms
41,252 KB
testcase_09 AC 114 ms
41,132 KB
testcase_10 AC 113 ms
41,140 KB
testcase_11 AC 120 ms
41,108 KB
testcase_12 AC 112 ms
40,736 KB
testcase_13 AC 113 ms
41,212 KB
testcase_14 AC 101 ms
39,876 KB
testcase_15 AC 111 ms
41,068 KB
testcase_16 AC 100 ms
39,796 KB
testcase_17 AC 109 ms
41,180 KB
testcase_18 AC 113 ms
41,260 KB
testcase_19 AC 114 ms
41,020 KB
testcase_20 AC 114 ms
41,108 KB
testcase_21 AC 96 ms
40,060 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