結果

問題 No.1800 Random XOR
ユーザー kohei2019kohei2019
提出日時 2023-06-19 22:40:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 53,592 KB
最終ジャッジ日時 2024-06-27 10:32:29
合計ジャッジ時間 1,680 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,012 KB
testcase_01 AC 37 ms
52,048 KB
testcase_02 AC 36 ms
52,744 KB
testcase_03 AC 36 ms
52,852 KB
testcase_04 AC 35 ms
52,760 KB
testcase_05 AC 36 ms
52,476 KB
testcase_06 AC 35 ms
52,084 KB
testcase_07 AC 37 ms
51,832 KB
testcase_08 AC 37 ms
52,524 KB
testcase_09 AC 36 ms
51,568 KB
testcase_10 AC 37 ms
53,184 KB
testcase_11 AC 38 ms
53,100 KB
testcase_12 AC 38 ms
53,292 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 37 ms
51,696 KB
testcase_15 AC 37 ms
53,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def invmod(a,mod):#mod逆元
    if a == 0:
        return 0
    if a == 1:
        return 1
    return (-invmod(mod % a, mod) * (mod // a)) % mod

def modPow(a,n,mod):#繰り返し二乗法 a**n % mod
    if n==0:
        return 1
    if n==1:
        return a%mod
    if n & 1:
        return (a*modPow(a,n-1,mod)) % mod
    t = modPow(a,n>>1,mod)
    return (t*t)%mod

N,M = map(int,input().split())
mod = 10**9+7
inv2 = invmod(2, mod)
ans = (modPow(2, M, mod)-1)*inv2
ans %= mod
print(ans)
0