結果

問題 No.197 手品
ユーザー 👑 obakyanobakyan
提出日時 2019-04-28 22:18:24
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 943 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 03:57:40
合計ジャッジ時間 1,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ior = io.read
local s1 = ior()
local num = ior("*n", "*l")
local s2 = ior()
local cnt1, cnt2, v1, v2 = 0, 0, 0, 0
for i = 1, 3 do
  if(s1:sub(i, i) == "o") then cnt1, v1 = cnt1 + 1, v1 + 2^(i-1) end
  if(s2:sub(i, i) == "o") then cnt2, v2 = cnt2 + 1, v2 + 2^(i-1) end
end
if(cnt1 ~= cnt2) then
  print("SUCCESS")
elseif(cnt1 == 0 or cnt1 == 3) then
  print("FAILURE")
else
  if(cnt1 == 2) then
    v1, v2 = 7 - v1, 7 - v2
  end
  if(v1 == 1) then
    if(v2 == 1) then print("FAILURE")
    elseif(v2 == 2) then print(num == 0 and "SUCCESS" or "FAILURE")
    else print(num <= 1 and "SUCCESS" or "FAILURE")
    end
  elseif(v1 == 4) then
    if(v2 == 4) then print("FAILURE")
    elseif(v2 == 2) then print(num == 0 and "SUCCESS" or "FAILURE")
    else print(num <= 1 and "SUCCESS" or "FAILURE")
    end
  else
    if(v2 == 2) then print(num == 1 and "SUCCESS" or "FAILURE")
    else print(num == 0 and "SUCCESS" or "FAILURE")
    end
  end
end
0