結果

問題 No.2079 aaabbc
ユーザー Andrey GalyshAndrey Galysh
提出日時 2022-09-25 22:00:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 56,172 KB
最終ジャッジ日時 2024-06-01 23:31:14
合計ジャッジ時間 4,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,716 KB
testcase_01 AC 117 ms
54,268 KB
testcase_02 AC 111 ms
54,136 KB
testcase_03 AC 103 ms
52,840 KB
testcase_04 AC 110 ms
54,144 KB
testcase_05 AC 102 ms
52,944 KB
testcase_06 AC 97 ms
52,896 KB
testcase_07 AC 110 ms
53,004 KB
testcase_08 AC 96 ms
52,372 KB
testcase_09 AC 115 ms
56,172 KB
testcase_10 AC 102 ms
52,972 KB
testcase_11 AC 111 ms
53,896 KB
testcase_12 AC 115 ms
54,236 KB
testcase_13 AC 112 ms
54,240 KB
testcase_14 AC 101 ms
52,888 KB
testcase_15 AC 113 ms
53,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;

public class Main {
    static Scanner scan;
    public static long M = 998_244_353l;
    public static long pow(long n, long p, long m) {
        if (p == 0) {
            return 1l;
        }
        if (n == 0) {
            return 0l;
        }
        int lp = 0; //log_2{p}
        long tp = p;
        while (tp > 0) {
            tp >>= 1;
            lp++;
        }
        long tn = n % m;
        tp = p;
        long res = 1;
        for (int i = 0; i < lp; i++) {
            if ((tp & 1) > 0) {
                res = (res*tn)%m;
            }
            tn = (tn*tn)%m;
            tp >>= 1;
        }
        return res;
    }
    public static void main(String []args) {
        scan = new Scanner(System.in);
        int n = scan.nextInt();
        System.out.println(pow(3l, n, M));
    }
}
0