結果

問題 No.976 2 の 128 乗と M
ユーザー hamray
提出日時 2020-02-02 23:25:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-18 21:31:45
合計ジャッジ時間 3,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

def pow_r(x, n, mod):
    ans = 1
    while (n > 0):
        if (bin(n & 1) == bin(1)):
            ans = ans * x
        ans = ans % mod
        x = x * x
        x = x % mod
        n = n >> 1  # ビットシフト
    return ans



if __name__ == '__main__':
    M = int(input())
    print(pow_r(2,128, M))
0