結果

問題 No.72 そろばん Med
ユーザー htensaihtensai
提出日時 2019-12-06 12:33:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-06-02 09:19:34
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,080 KB
testcase_01 AC 107 ms
40,516 KB
testcase_02 AC 106 ms
41,084 KB
testcase_03 AC 113 ms
41,156 KB
testcase_04 AC 100 ms
40,180 KB
testcase_05 AC 108 ms
41,256 KB
testcase_06 AC 95 ms
39,428 KB
testcase_07 AC 99 ms
40,040 KB
testcase_08 AC 104 ms
40,324 KB
testcase_09 AC 109 ms
41,344 KB
testcase_10 AC 99 ms
40,100 KB
testcase_11 AC 113 ms
41,140 KB
testcase_12 AC 112 ms
41,104 KB
testcase_13 AC 109 ms
40,372 KB
testcase_14 AC 123 ms
41,208 KB
testcase_15 AC 106 ms
40,308 KB
testcase_16 AC 122 ms
41,252 KB
testcase_17 AC 113 ms
41,448 KB
testcase_18 AC 120 ms
41,252 KB
testcase_19 AC 117 ms
41,516 KB
testcase_20 AC 106 ms
40,964 KB
testcase_21 AC 111 ms
41,232 KB
testcase_22 AC 113 ms
41,548 KB
testcase_23 AC 116 ms
41,540 KB
testcase_24 AC 103 ms
39,916 KB
testcase_25 AC 119 ms
41,508 KB
testcase_26 AC 118 ms
41,232 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