結果

問題 No.1800 Random XOR
ユーザー rlangevinrlangevin
提出日時 2022-12-31 00:44:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-05-04 12:02:22
合計ジャッジ時間 1,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,672 KB
testcase_01 AC 34 ms
52,284 KB
testcase_02 AC 33 ms
52,316 KB
testcase_03 AC 35 ms
52,580 KB
testcase_04 AC 36 ms
53,812 KB
testcase_05 AC 36 ms
52,532 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 35 ms
52,012 KB
testcase_08 AC 39 ms
51,816 KB
testcase_09 AC 39 ms
52,152 KB
testcase_10 AC 36 ms
52,832 KB
testcase_11 AC 34 ms
51,808 KB
testcase_12 AC 33 ms
52,564 KB
testcase_13 AC 34 ms
53,724 KB
testcase_14 AC 34 ms
53,280 KB
testcase_15 AC 34 ms
52,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
mod = 10 ** 9 + 7

ans = pow(2, M, mod) - 1
inv = pow(2, mod - 2, mod)
ans *= inv
ans %= mod
print(ans)
0