結果

問題 No.72 そろばん Med
ユーザー yuki2006yuki2006
提出日時 2014-11-18 21:30:16
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 79,452 KB
実行使用メモリ 41,948 KB
最終ジャッジ日時 2025-01-02 17:33:20
合計ジャッジ時間 8,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
41,820 KB
testcase_02 AC 106 ms
41,916 KB
testcase_03 WA -
testcase_04 AC 106 ms
41,948 KB
testcase_05 WA -
testcase_06 AC 111 ms
41,556 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 111 ms
41,724 KB
testcase_10 AC 106 ms
41,700 KB
testcase_11 AC 107 ms
41,728 KB
testcase_12 AC 114 ms
41,856 KB
testcase_13 WA -
testcase_14 AC 107 ms
41,852 KB
testcase_15 WA -
testcase_16 AC 110 ms
41,800 KB
testcase_17 AC 106 ms
41,600 KB
testcase_18 AC 107 ms
41,700 KB
testcase_19 AC 112 ms
41,804 KB
testcase_20 AC 116 ms
41,444 KB
testcase_21 AC 124 ms
41,856 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 117 ms
41,460 KB
testcase_25 WA -
testcase_26 AC 106 ms
41,828 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