結果

問題 No.480 合計
ユーザー 水野嶺水野嶺
提出日時 2020-05-14 11:04:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 2,676 ms
コンパイル使用メモリ 79,440 KB
実行使用メモリ 41,224 KB
最終ジャッジ日時 2024-09-15 01:23:41
合計ジャッジ時間 6,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,780 KB
testcase_01 AC 131 ms
41,072 KB
testcase_02 AC 129 ms
40,884 KB
testcase_03 AC 130 ms
40,980 KB
testcase_04 AC 130 ms
40,880 KB
testcase_05 AC 117 ms
40,120 KB
testcase_06 AC 131 ms
40,932 KB
testcase_07 AC 130 ms
40,928 KB
testcase_08 AC 117 ms
39,792 KB
testcase_09 AC 117 ms
39,608 KB
testcase_10 AC 130 ms
40,896 KB
testcase_11 AC 130 ms
41,224 KB
testcase_12 AC 128 ms
40,948 KB
testcase_13 AC 131 ms
40,932 KB
testcase_14 AC 130 ms
40,876 KB
testcase_15 AC 118 ms
39,888 KB
testcase_16 AC 131 ms
40,780 KB
testcase_17 AC 116 ms
39,944 KB
testcase_18 AC 132 ms
40,960 KB
testcase_19 AC 130 ms
40,788 KB
testcase_20 AC 118 ms
39,888 KB
testcase_21 AC 131 ms
40,840 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
	{
		// your code goes here
		int sum = 0;
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		
		for(int i=0;i<=n;i++){
			sum +=i;
		}
		
		System.out.println(sum);
	}
}
0