結果

問題 No.72 そろばん Med
ユーザー kou6839kou6839
提出日時 2014-12-21 16:30:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 478 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 86,604 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-11-21 11:39:30
合計ジャッジ時間 6,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,268 KB
testcase_01 AC 130 ms
53,860 KB
testcase_02 AC 127 ms
54,332 KB
testcase_03 AC 128 ms
53,956 KB
testcase_04 AC 127 ms
54,164 KB
testcase_05 AC 130 ms
54,060 KB
testcase_06 AC 128 ms
53,972 KB
testcase_07 AC 137 ms
54,312 KB
testcase_08 AC 128 ms
54,400 KB
testcase_09 AC 130 ms
54,128 KB
testcase_10 AC 134 ms
54,116 KB
testcase_11 AC 144 ms
53,980 KB
testcase_12 AC 124 ms
52,996 KB
testcase_13 AC 125 ms
53,856 KB
testcase_14 AC 128 ms
54,076 KB
testcase_15 AC 132 ms
54,172 KB
testcase_16 AC 132 ms
54,044 KB
testcase_17 AC 128 ms
54,104 KB
testcase_18 AC 132 ms
54,176 KB
testcase_19 AC 141 ms
54,312 KB
testcase_20 AC 135 ms
54,176 KB
testcase_21 AC 130 ms
54,188 KB
testcase_22 AC 131 ms
54,228 KB
testcase_23 AC 126 ms
54,180 KB
testcase_24 AC 128 ms
54,056 KB
testcase_25 AC 138 ms
54,220 KB
testcase_26 AC 128 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long si = n/2;
        long ue = n-si;
        BigInteger a = new BigInteger(si+"");
        BigInteger aa = a.add(new BigInteger("1"));
        BigInteger b = aa.multiply(new BigInteger(ue+""));
        b = b.add(a);
        System.out.println(b.mod(new BigInteger("1000007")));
    }
}
0