結果

問題 No.2937 Sigma Plus Problem
ユーザー ks2mks2m
提出日時 2024-10-18 21:24:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 300 ms
コード長 478 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 50,664 KB
最終ジャッジ日時 2024-10-18 21:47:52
合計ジャッジ時間 4,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,372 KB
testcase_01 AC 55 ms
50,496 KB
testcase_02 AC 55 ms
50,232 KB
testcase_03 AC 54 ms
50,192 KB
testcase_04 AC 54 ms
50,516 KB
testcase_05 AC 54 ms
50,152 KB
testcase_06 AC 55 ms
50,520 KB
testcase_07 AC 54 ms
50,264 KB
testcase_08 AC 55 ms
50,332 KB
testcase_09 AC 55 ms
50,664 KB
testcase_10 AC 56 ms
50,124 KB
testcase_11 AC 55 ms
50,576 KB
testcase_12 AC 54 ms
50,464 KB
testcase_13 AC 54 ms
50,236 KB
testcase_14 AC 54 ms
50,260 KB
testcase_15 AC 54 ms
50,652 KB
testcase_16 AC 53 ms
50,600 KB
testcase_17 AC 54 ms
50,472 KB
testcase_18 AC 54 ms
50,524 KB
testcase_19 AC 53 ms
50,564 KB
testcase_20 AC 55 ms
50,480 KB
testcase_21 AC 54 ms
50,620 KB
testcase_22 AC 54 ms
50,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		long n = Long.parseLong(br.readLine());
		br.close();

		BigInteger bn = BigInteger.valueOf(n);

		BigInteger ans = bn.multiply(bn.add(BigInteger.ONE)).divide(BigInteger.valueOf(2));
		System.out.println(ans.toString());
	}
}
0