結果

問題 No.480 合計
ユーザー tarutaru
提出日時 2021-02-08 19:25:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-07-05 20:55:16
合計ジャッジ時間 4,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
53,052 KB
testcase_01 AC 113 ms
54,092 KB
testcase_02 AC 112 ms
53,580 KB
testcase_03 AC 111 ms
53,832 KB
testcase_04 AC 110 ms
53,892 KB
testcase_05 AC 114 ms
54,180 KB
testcase_06 AC 100 ms
41,276 KB
testcase_07 AC 99 ms
41,156 KB
testcase_08 AC 101 ms
41,204 KB
testcase_09 AC 109 ms
41,216 KB
testcase_10 AC 113 ms
40,716 KB
testcase_11 AC 113 ms
41,544 KB
testcase_12 AC 97 ms
41,428 KB
testcase_13 AC 111 ms
40,864 KB
testcase_14 AC 99 ms
41,188 KB
testcase_15 AC 99 ms
41,244 KB
testcase_16 AC 107 ms
41,276 KB
testcase_17 AC 111 ms
41,052 KB
testcase_18 AC 109 ms
41,140 KB
testcase_19 AC 116 ms
41,260 KB
testcase_20 AC 114 ms
41,340 KB
testcase_21 AC 100 ms
40,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
        int N = sc.nextInt();
       
       
       System.out.println(N*(N+1)/2);
 
    }
	}
0