結果

問題 No.1049 Zero (Exhaust)
ユーザー htensaihtensai
提出日時 2020-05-15 08:24:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-09-17 12:23:31
合計ジャッジ時間 5,719 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,612 KB
testcase_01 AC 122 ms
41,308 KB
testcase_02 AC 103 ms
40,864 KB
testcase_03 AC 129 ms
41,308 KB
testcase_04 AC 101 ms
41,656 KB
testcase_05 AC 112 ms
41,384 KB
testcase_06 AC 115 ms
41,288 KB
testcase_07 AC 128 ms
41,344 KB
testcase_08 AC 120 ms
40,948 KB
testcase_09 AC 115 ms
41,148 KB
testcase_10 AC 125 ms
41,068 KB
testcase_11 AC 125 ms
41,424 KB
testcase_12 AC 132 ms
41,208 KB
testcase_13 AC 128 ms
41,624 KB
testcase_14 AC 117 ms
41,612 KB
testcase_15 AC 126 ms
41,188 KB
testcase_16 AC 115 ms
41,152 KB
testcase_17 AC 128 ms
41,684 KB
testcase_18 AC 135 ms
41,656 KB
testcase_19 AC 118 ms
41,076 KB
testcase_20 AC 113 ms
41,468 KB
testcase_21 AC 112 ms
40,004 KB
testcase_22 AC 115 ms
41,372 KB
testcase_23 AC 127 ms
41,108 KB
testcase_24 AC 146 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int p = sc.nextInt();
        int k = sc.nextInt();
        long prevZero = 1;
        long prevNotZero = 0;
        for (int i = 0; i < k; i++) {
            long nextZero = (prevZero * (p + 1) + prevNotZero * 2) % MOD;;
            long nextNotZero = (prevZero * (p - 1) + prevNotZero * (2 * p - 2)) % MOD;
            prevZero = nextZero;
            prevNotZero = nextNotZero;
        }
        System.out.println(prevZero);
    }
}
0