結果
問題 | No.939 and or |
ユーザー | 👑 obakyan |
提出日時 | 2019-12-03 22:56:55 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 359 bytes |
コンパイル時間 | 54 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 22:31:52 |
合計ジャッジ時間 | 1,038 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
local a, b = io.read("*n", "*n") local s, t = {}, {} for i = 1, 33 do s[i] = a % 2 == 1 t[i] = b % 2 == 1 a = math.floor(a / 2) b = math.floor(b / 2) end local ret = 1 for i = 1, 33 do if s[i] then if not t[i] then ret = 0 break end else if t[i] then ret = ret * 2 end end end print(1 < ret and ret / 2 or ret)