結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | 👑 obakyan |
提出日時 | 2021-07-26 22:32:30 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,012 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 110,544 KB |
最終ジャッジ日時 | 2024-07-22 13:29:27 |
合計ジャッジ時間 | 19,490 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 710 ms
87,796 KB |
testcase_09 | AC | 124 ms
20,736 KB |
testcase_10 | AC | 501 ms
59,140 KB |
testcase_11 | AC | 359 ms
46,568 KB |
testcase_12 | AC | 876 ms
91,108 KB |
testcase_13 | AC | 969 ms
98,944 KB |
testcase_14 | AC | 508 ms
56,408 KB |
testcase_15 | AC | 1,064 ms
104,300 KB |
testcase_16 | AC | 865 ms
89,900 KB |
testcase_17 | AC | 918 ms
100,468 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 678 ms
99,456 KB |
testcase_21 | AC | 1,071 ms
107,852 KB |
testcase_22 | AC | 1,140 ms
110,544 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 3 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 837 ms
89,572 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 1,044 ms
101,804 KB |
testcase_34 | AC | 1,049 ms
101,576 KB |
testcase_35 | AC | 1,116 ms
104,064 KB |
testcase_36 | AC | 1,100 ms
103,356 KB |
ソースコード
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 = io.read("*n", "*l") local str = io.read() local a = {} for w in str:gmatch("%d+") do table.insert(a, lltonumber(w)) end local ret = 1LL local t = {} for i = 1, n do t[i] = {} local ai = a[i] for j = 1, 61 do t[i][j] = ai % 2LL == 1LL ai = ai / 2LL end end local f = {} for i = 1, 61 do f[i] = false end local rem = n for j = 1, 61 do if f[j] then for i = 1, rem do t[i][j] = not t[i][j] end end local tgt = 0 for i = 1, rem do if t[i][j] then ret = ret + ret tgt = i break end end if 0 < tgt then for k = j, 61 do if t[tgt][k] then f[k] = not f[k] end end if tgt < rem then for k = j + 1, 61 do t[tgt][k], t[rem][k] = t[rem][k], t[tgt][k] end end rem = rem - 1 end end ret = tostring(ret):gsub("LL", "") print(ret) -- print(os.clock())