結果

問題 No.480 合計
ユーザー nohopennohopen
提出日時 2019-06-29 15:38:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 75,720 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-07-02 05:34:27
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,208 KB
testcase_01 AC 123 ms
40,552 KB
testcase_02 AC 126 ms
40,728 KB
testcase_03 AC 127 ms
41,128 KB
testcase_04 AC 127 ms
40,880 KB
testcase_05 AC 110 ms
39,808 KB
testcase_06 AC 126 ms
41,344 KB
testcase_07 AC 125 ms
40,964 KB
testcase_08 AC 125 ms
40,820 KB
testcase_09 AC 123 ms
40,888 KB
testcase_10 AC 126 ms
41,156 KB
testcase_11 AC 128 ms
41,092 KB
testcase_12 AC 129 ms
40,828 KB
testcase_13 AC 125 ms
41,012 KB
testcase_14 AC 126 ms
41,156 KB
testcase_15 AC 127 ms
40,800 KB
testcase_16 AC 126 ms
40,896 KB
testcase_17 AC 128 ms
40,708 KB
testcase_18 AC 126 ms
40,972 KB
testcase_19 AC 127 ms
41,164 KB
testcase_20 AC 127 ms
40,924 KB
testcase_21 AC 129 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = Integer.parseInt( sc.next() );
    int sum = IntStream.range(1, n + 1).sum();
    System.out.println(sum);
  }
}
0