結果

問題 No.480 合計
ユーザー kazapyon27kazapyon27
提出日時 2017-04-29 18:45:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 3,851 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-05-08 07:24:50
合計ジャッジ時間 7,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
40,996 KB
testcase_01 AC 148 ms
41,200 KB
testcase_02 AC 139 ms
41,300 KB
testcase_03 AC 139 ms
41,280 KB
testcase_04 AC 138 ms
41,076 KB
testcase_05 AC 135 ms
41,156 KB
testcase_06 AC 143 ms
41,324 KB
testcase_07 AC 137 ms
41,272 KB
testcase_08 AC 138 ms
41,100 KB
testcase_09 AC 137 ms
41,012 KB
testcase_10 AC 138 ms
41,116 KB
testcase_11 AC 136 ms
41,532 KB
testcase_12 AC 134 ms
41,408 KB
testcase_13 AC 136 ms
41,428 KB
testcase_14 AC 136 ms
41,264 KB
testcase_15 AC 140 ms
41,396 KB
testcase_16 AC 142 ms
41,484 KB
testcase_17 AC 138 ms
41,196 KB
testcase_18 AC 145 ms
41,420 KB
testcase_19 AC 146 ms
41,040 KB
testcase_20 AC 140 ms
41,204 KB
testcase_21 AC 143 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Sum {
	public static void main(String[] args) {
		try(Scanner input =new Scanner(System.in)){
			byte EndNumber=input.nextByte();
			int Goukei=EndNumber*(1+EndNumber)/2;
			System.out.println(Goukei);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0