結果

問題 No.480 合計
ユーザー GrenacheGrenache
提出日時 2017-02-10 22:20:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 3,213 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-05-08 07:08:58
合計ジャッジ時間 6,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,256 KB
testcase_01 AC 128 ms
41,296 KB
testcase_02 AC 128 ms
41,436 KB
testcase_03 AC 127 ms
41,068 KB
testcase_04 AC 114 ms
39,988 KB
testcase_05 AC 112 ms
40,276 KB
testcase_06 AC 115 ms
40,192 KB
testcase_07 AC 115 ms
40,340 KB
testcase_08 AC 116 ms
39,960 KB
testcase_09 AC 124 ms
41,380 KB
testcase_10 AC 126 ms
41,264 KB
testcase_11 AC 115 ms
40,340 KB
testcase_12 AC 127 ms
41,216 KB
testcase_13 AC 114 ms
40,424 KB
testcase_14 AC 127 ms
41,492 KB
testcase_15 AC 129 ms
41,316 KB
testcase_16 AC 128 ms
41,464 KB
testcase_17 AC 115 ms
40,368 KB
testcase_18 AC 127 ms
41,348 KB
testcase_19 AC 130 ms
41,164 KB
testcase_20 AC 117 ms
40,000 KB
testcase_21 AC 130 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder480 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		pr.println(n * (n + 1) / 2);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0