結果

問題 No.71 そろばん
ユーザー ぴろずぴろず
提出日時 2014-12-11 16:00:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 416 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 54,560 KB
最終ジャッジ日時 2024-06-11 20:35:17
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,052 KB
testcase_01 AC 105 ms
54,164 KB
testcase_02 AC 99 ms
53,160 KB
testcase_03 AC 96 ms
53,208 KB
testcase_04 AC 106 ms
54,108 KB
testcase_05 AC 106 ms
54,044 KB
testcase_06 AC 106 ms
53,968 KB
testcase_07 AC 113 ms
54,148 KB
testcase_08 AC 122 ms
53,860 KB
testcase_09 AC 123 ms
54,168 KB
testcase_10 AC 116 ms
54,080 KB
testcase_11 AC 118 ms
54,560 KB
testcase_12 AC 110 ms
54,324 KB
testcase_13 AC 109 ms
54,020 KB
testcase_14 AC 104 ms
54,040 KB
testcase_15 AC 102 ms
53,020 KB
testcase_16 AC 113 ms
54,220 KB
testcase_17 AC 114 ms
54,112 KB
testcase_18 AC 112 ms
53,972 KB
testcase_19 AC 96 ms
52,756 KB
testcase_20 AC 105 ms
54,016 KB
testcase_21 AC 107 ms
54,304 KB
testcase_22 AC 97 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no072;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigInteger n = new BigInteger(sc.next());
		BigInteger half = n.divide(new BigInteger("2"));
		System.out.println(
				half.add(BigInteger.ONE).multiply(n.subtract(half).add(BigInteger.ONE)).subtract(BigInteger.ONE));
	}

}
0