結果

問題 No.72 そろばん Med
ユーザー htensaihtensai
提出日時 2019-12-06 12:33:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-12-23 05:07:35
合計ジャッジ時間 6,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,240 KB
testcase_01 AC 124 ms
41,200 KB
testcase_02 AC 118 ms
40,168 KB
testcase_03 AC 107 ms
41,260 KB
testcase_04 AC 118 ms
39,984 KB
testcase_05 AC 122 ms
41,400 KB
testcase_06 AC 114 ms
41,376 KB
testcase_07 AC 118 ms
40,616 KB
testcase_08 AC 121 ms
41,144 KB
testcase_09 AC 121 ms
41,284 KB
testcase_10 AC 116 ms
41,740 KB
testcase_11 AC 121 ms
41,648 KB
testcase_12 AC 120 ms
40,320 KB
testcase_13 AC 107 ms
40,084 KB
testcase_14 AC 119 ms
41,264 KB
testcase_15 AC 114 ms
40,048 KB
testcase_16 AC 122 ms
41,188 KB
testcase_17 AC 119 ms
41,252 KB
testcase_18 AC 116 ms
40,576 KB
testcase_19 AC 116 ms
41,060 KB
testcase_20 AC 120 ms
40,752 KB
testcase_21 AC 118 ms
41,268 KB
testcase_22 AC 118 ms
41,648 KB
testcase_23 AC 117 ms
40,228 KB
testcase_24 AC 124 ms
41,188 KB
testcase_25 AC 105 ms
39,992 KB
testcase_26 AC 99 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		BigInteger mod = BigInteger.valueOf(1000007);
		long n = sc.nextLong();
		BigInteger ans = BigInteger.valueOf(n / 2 + 1).multiply(BigInteger.valueOf(n - n / 2 + 1)).subtract(BigInteger.ONE).mod(mod);
		System.out.println(ans);
   }
}

0