結果

問題 No.72 そろばん Med
ユーザー ぴろずぴろず
提出日時 2014-12-11 15:59:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-11-21 11:38:19
合計ジャッジ時間 6,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,140 KB
testcase_01 AC 131 ms
54,240 KB
testcase_02 AC 127 ms
54,112 KB
testcase_03 AC 129 ms
54,052 KB
testcase_04 AC 127 ms
53,824 KB
testcase_05 AC 129 ms
54,364 KB
testcase_06 AC 130 ms
54,264 KB
testcase_07 AC 130 ms
54,400 KB
testcase_08 AC 130 ms
54,136 KB
testcase_09 AC 129 ms
53,904 KB
testcase_10 AC 130 ms
54,420 KB
testcase_11 AC 129 ms
53,880 KB
testcase_12 AC 115 ms
52,972 KB
testcase_13 AC 129 ms
54,156 KB
testcase_14 AC 129 ms
53,932 KB
testcase_15 AC 127 ms
54,136 KB
testcase_16 AC 126 ms
54,076 KB
testcase_17 AC 127 ms
54,160 KB
testcase_18 AC 129 ms
54,384 KB
testcase_19 AC 128 ms
54,408 KB
testcase_20 AC 127 ms
54,192 KB
testcase_21 AC 132 ms
54,212 KB
testcase_22 AC 126 ms
54,340 KB
testcase_23 AC 131 ms
54,044 KB
testcase_24 AC 129 ms
54,336 KB
testcase_25 AC 131 ms
54,100 KB
testcase_26 AC 131 ms
54,680 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)
				.remainder(new BigInteger("1000007"))
				);
	}

}
0