結果

問題 No.72 そろばん Med
ユーザー yuki2006yuki2006
提出日時 2014-11-18 21:33:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 3,929 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-11-21 11:30:48
合計ジャッジ時間 8,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,192 KB
testcase_01 AC 140 ms
41,348 KB
testcase_02 AC 145 ms
41,664 KB
testcase_03 AC 146 ms
41,108 KB
testcase_04 AC 138 ms
41,380 KB
testcase_05 AC 143 ms
40,836 KB
testcase_06 AC 137 ms
41,088 KB
testcase_07 AC 140 ms
41,096 KB
testcase_08 AC 138 ms
41,372 KB
testcase_09 AC 146 ms
41,152 KB
testcase_10 AC 139 ms
41,356 KB
testcase_11 AC 145 ms
41,196 KB
testcase_12 AC 145 ms
41,232 KB
testcase_13 AC 144 ms
41,132 KB
testcase_14 AC 149 ms
40,968 KB
testcase_15 AC 145 ms
41,356 KB
testcase_16 AC 138 ms
41,220 KB
testcase_17 AC 142 ms
40,772 KB
testcase_18 AC 141 ms
41,356 KB
testcase_19 AC 139 ms
41,220 KB
testcase_20 AC 138 ms
40,972 KB
testcase_21 AC 145 ms
41,028 KB
testcase_22 AC 145 ms
41,192 KB
testcase_23 AC 140 ms
41,268 KB
testcase_24 AC 144 ms
41,180 KB
testcase_25 AC 148 ms
41,432 KB
testcase_26 AC 138 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki072 {
    public static void main(String[] args) {
        Yuki072 hoge = new Yuki072();
    }

    Yuki072() {
        Scanner scanner = new Scanner(System.in);
        long N = scanner.nextLong();
        long mod = 1000007L;

        long i = N / 2;
        long tmp = ((i + 1) % mod) * ((N - i) % mod);
        tmp = (i % mod) + tmp % mod;
        System.out.println(tmp % mod);
    }

}
0