結果

問題 No.480 合計
ユーザー ML8xnYizwPAcWLQML8xnYizwPAcWLQ
提出日時 2018-11-25 19:11:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 2,968 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-06-07 00:20:52
合計ジャッジ時間 6,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,264 KB
testcase_01 AC 122 ms
41,220 KB
testcase_02 AC 120 ms
41,408 KB
testcase_03 AC 121 ms
41,556 KB
testcase_04 AC 117 ms
41,176 KB
testcase_05 AC 121 ms
41,232 KB
testcase_06 AC 126 ms
41,292 KB
testcase_07 AC 120 ms
41,244 KB
testcase_08 AC 122 ms
41,272 KB
testcase_09 AC 123 ms
41,660 KB
testcase_10 AC 122 ms
41,160 KB
testcase_11 AC 108 ms
41,120 KB
testcase_12 AC 118 ms
41,304 KB
testcase_13 AC 110 ms
41,548 KB
testcase_14 AC 122 ms
41,004 KB
testcase_15 AC 110 ms
40,088 KB
testcase_16 AC 125 ms
41,564 KB
testcase_17 AC 119 ms
41,060 KB
testcase_18 AC 121 ms
41,564 KB
testcase_19 AC 119 ms
41,428 KB
testcase_20 AC 120 ms
41,336 KB
testcase_21 AC 123 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 * Yukicoder1
 */
import java.util.*;
public class Yukicoder1 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int sum = 0;
    int n = sc.nextInt();
    for (int i = 1; i <= n; i++) {
      sum += i;
    }
    System.out.println(sum);
  }
}
0