結果

問題 No.1184 Hà Nội
ユーザー tentententen
提出日時 2020-08-24 10:29:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 73,664 KB
実行使用メモリ 57,956 KB
最終ジャッジ日時 2024-11-06 08:16:55
合計ジャッジ時間 7,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,136 KB
testcase_01 AC 131 ms
54,212 KB
testcase_02 AC 129 ms
54,036 KB
testcase_03 AC 129 ms
54,140 KB
testcase_04 AC 119 ms
52,712 KB
testcase_05 AC 127 ms
54,056 KB
testcase_06 AC 115 ms
52,936 KB
testcase_07 AC 126 ms
54,068 KB
testcase_08 AC 129 ms
53,872 KB
testcase_09 AC 129 ms
54,092 KB
testcase_10 AC 131 ms
53,964 KB
testcase_11 AC 129 ms
54,060 KB
testcase_12 AC 131 ms
54,352 KB
testcase_13 AC 135 ms
53,792 KB
testcase_14 AC 121 ms
52,860 KB
testcase_15 AC 136 ms
53,988 KB
testcase_16 AC 129 ms
54,120 KB
testcase_17 AC 129 ms
54,416 KB
testcase_18 AC 129 ms
54,184 KB
testcase_19 AC 129 ms
54,088 KB
testcase_20 AC 128 ms
54,092 KB
testcase_21 AC 127 ms
54,044 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 136 ms
53,872 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long l = sc.nextLong();
        long count = (n + l - 1) / l % MOD;
        System.out.println((pow(2, count) - 1 + MOD) % MOD);
    }
    
    static long pow(long x, long y) {
        if (y == 0) {
            return 1;
        } else if (y % 2 == 0) {
            return pow(x * x % MOD, y / 2);
        } else {
            return pow(x, y - 1) * x % MOD;
        }
    }
}
0