結果

問題 No.72 そろばん Med
ユーザー yuki2006yuki2006
提出日時 2014-11-18 21:30:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 5,061 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,828 KB
最終ジャッジ日時 2024-06-10 20:21:57
合計ジャッジ時間 10,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 131 ms
53,972 KB
testcase_02 AC 132 ms
54,132 KB
testcase_03 WA -
testcase_04 AC 133 ms
54,132 KB
testcase_05 WA -
testcase_06 AC 135 ms
54,260 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 130 ms
53,888 KB
testcase_10 AC 117 ms
52,604 KB
testcase_11 AC 133 ms
53,900 KB
testcase_12 AC 130 ms
54,028 KB
testcase_13 WA -
testcase_14 AC 133 ms
53,944 KB
testcase_15 WA -
testcase_16 AC 133 ms
53,992 KB
testcase_17 AC 134 ms
54,096 KB
testcase_18 AC 134 ms
54,244 KB
testcase_19 AC 133 ms
54,080 KB
testcase_20 AC 134 ms
53,912 KB
testcase_21 AC 133 ms
54,056 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 143 ms
53,748 KB
testcase_25 WA -
testcase_26 AC 133 ms
53,980 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));
        System.out.println((i % mod) + tmp % mod);
    }

}
0