結果

問題 No.72 そろばん Med
ユーザー spaciaspacia
提出日時 2016-01-24 08:57:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 928 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 75,664 KB
実行使用メモリ 37,520 KB
最終ジャッジ日時 2024-11-21 11:52:07
合計ジャッジ時間 4,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
37,424 KB
testcase_01 AC 59 ms
36,960 KB
testcase_02 AC 61 ms
37,168 KB
testcase_03 AC 61 ms
37,468 KB
testcase_04 AC 62 ms
37,436 KB
testcase_05 AC 60 ms
37,276 KB
testcase_06 AC 60 ms
37,396 KB
testcase_07 AC 60 ms
37,520 KB
testcase_08 AC 61 ms
37,304 KB
testcase_09 AC 60 ms
37,404 KB
testcase_10 AC 60 ms
37,384 KB
testcase_11 AC 61 ms
37,352 KB
testcase_12 AC 60 ms
36,872 KB
testcase_13 AC 59 ms
37,520 KB
testcase_14 AC 59 ms
37,424 KB
testcase_15 AC 60 ms
37,460 KB
testcase_16 AC 60 ms
37,204 KB
testcase_17 AC 60 ms
37,388 KB
testcase_18 AC 61 ms
36,992 KB
testcase_19 AC 60 ms
36,944 KB
testcase_20 AC 62 ms
37,300 KB
testcase_21 AC 63 ms
37,400 KB
testcase_22 AC 61 ms
37,404 KB
testcase_23 AC 62 ms
37,080 KB
testcase_24 AC 60 ms
37,408 KB
testcase_25 AC 59 ms
37,220 KB
testcase_26 AC 59 ms
37,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main (String[] args) throws IOException {
            BufferedReader br = 
                    new BufferedReader(new InputStreamReader(System.in));
            
            BigInteger n = new BigInteger(br.readLine());
            BigInteger zero = BigInteger.ZERO;
            BigInteger one = BigInteger.ONE;
            BigInteger two = BigInteger.valueOf(2);
            BigInteger mod = BigInteger.valueOf(1000007);
            
            if (n.remainder(two).compareTo(zero) == 0) {
                jout(n.divide(two).add(one).pow(2).subtract(one).mod(mod) + "\n");
            } else {
                jout(n.add(one).divide(two).add(one).multiply(n.subtract(one).divide(two).add(one)).subtract(one).mod(mod) + "\n");
            }
	}
        
       	public static void jout (Object o) {
            System.out.print(o);
	}
}
0