結果
問題 |
No.1800 Random XOR
|
ユーザー |
👑 |
提出日時 | 2022-01-08 20:11:22 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 853 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 6,948 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 09:44:42 |
合計ジャッジ時間 | 796 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 14 |
ソースコード
local mfl, mce = math.floor, math.ceil local mod = 1000000007 local function badd(x, y) return (x + y) % mod end local function bmul(x, y) local x1, y1 = mfl(x / 31623), mfl(y / 31623) local x0, y0 = x - x1 * 31623, y - y1 * 31623 return (x1 * y1 * 14122 + (x1 * y0 + x0 * y1) * 31623 + x0 * y0) % mod end local function modpow(src, pow) local res = 1 while 0 < pow do if pow % 2LL == 1LL then res = bmul(res, src) end src = bmul(src, src) pow = pow / 2LL end return res end local ffi = require("ffi") local C = ffi.C ffi.cdef[[ long long atoll(const char*); ]] local function lltonumber(str) return C.atoll(str) end local n, m = io.read():match("(%d+) (%d+)") n = lltonumber(n) m = lltonumber(m) m = m % 1000000006LL local ret = modpow(2, m) ret = badd(ret, 1000000007-1) ret = bmul(ret, 500000004) print(ret)