結果

問題 No.480 合計
ユーザー ambasadambasad
提出日時 2019-11-15 17:36:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-09-24 23:08:16
合計ジャッジ時間 5,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,088 KB
testcase_01 AC 109 ms
52,968 KB
testcase_02 AC 109 ms
52,988 KB
testcase_03 AC 124 ms
54,120 KB
testcase_04 AC 123 ms
54,008 KB
testcase_05 AC 125 ms
53,980 KB
testcase_06 AC 125 ms
53,968 KB
testcase_07 AC 121 ms
53,804 KB
testcase_08 AC 141 ms
54,052 KB
testcase_09 AC 113 ms
52,940 KB
testcase_10 AC 126 ms
54,292 KB
testcase_11 AC 127 ms
53,832 KB
testcase_12 AC 124 ms
54,052 KB
testcase_13 AC 123 ms
53,848 KB
testcase_14 AC 125 ms
54,092 KB
testcase_15 AC 125 ms
54,084 KB
testcase_16 AC 111 ms
52,864 KB
testcase_17 AC 127 ms
54,232 KB
testcase_18 AC 125 ms
53,900 KB
testcase_19 AC 111 ms
52,892 KB
testcase_20 AC 124 ms
54,176 KB
testcase_21 AC 125 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
       Scanner scan = new Scanner(System.in);
        String str = scan.nextLine();

        int n = Integer.parseInt(str);
        int sum = 0;

        for(int i=1; i<=n; i++) {
            sum += i;
        }

        System.out.println(sum);
        scan.close();
	}
}
0