結果

問題 No.72 そろばん Med
ユーザー rn4rurn4ru
提出日時 2016-04-14 09:49:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-11-21 11:54:39
合計ジャッジ時間 6,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,060 KB
testcase_01 AC 122 ms
41,148 KB
testcase_02 AC 122 ms
41,388 KB
testcase_03 AC 123 ms
41,192 KB
testcase_04 AC 120 ms
40,964 KB
testcase_05 AC 109 ms
41,184 KB
testcase_06 AC 119 ms
41,172 KB
testcase_07 AC 121 ms
41,096 KB
testcase_08 AC 120 ms
41,304 KB
testcase_09 AC 122 ms
41,192 KB
testcase_10 AC 125 ms
41,260 KB
testcase_11 AC 123 ms
41,260 KB
testcase_12 AC 122 ms
41,152 KB
testcase_13 AC 123 ms
41,228 KB
testcase_14 AC 122 ms
41,104 KB
testcase_15 AC 109 ms
39,664 KB
testcase_16 AC 123 ms
41,192 KB
testcase_17 AC 123 ms
41,256 KB
testcase_18 AC 120 ms
41,216 KB
testcase_19 AC 121 ms
41,448 KB
testcase_20 AC 123 ms
41,244 KB
testcase_21 AC 109 ms
41,168 KB
testcase_22 AC 121 ms
41,208 KB
testcase_23 AC 126 ms
41,388 KB
testcase_24 AC 124 ms
41,232 KB
testcase_25 AC 122 ms
40,940 KB
testcase_26 AC 122 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		BigInteger N = new BigInteger(scanner.next());
		BigInteger two = new BigInteger("2");
		BigInteger three = new BigInteger("3");
		BigInteger mod = new BigInteger("1000007");
		System.out
				.println((N.add(three).divide(two).multiply(N.add(two).divide(two)).subtract(BigInteger.ONE)).mod(mod));
	}

}
0