結果

問題 No.1183 コイン遊び
ユーザー 👑 obakyanobakyan
提出日時 2020-09-19 20:14:12
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 30,228 KB
最終ジャッジ日時 2024-06-23 18:16:19
合計ジャッジ時間 13,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 26 ms
6,940 KB
testcase_12 AC 313 ms
25,400 KB
testcase_13 AC 280 ms
25,208 KB
testcase_14 AC 476 ms
25,960 KB
testcase_15 AC 534 ms
26,052 KB
testcase_16 AC 530 ms
26,076 KB
testcase_17 AC 508 ms
26,052 KB
testcase_18 AC 535 ms
26,124 KB
testcase_19 AC 536 ms
26,048 KB
testcase_20 AC 506 ms
26,104 KB
testcase_21 AC 462 ms
30,208 KB
testcase_22 AC 466 ms
30,228 KB
testcase_23 AC 470 ms
22,072 KB
testcase_24 AC 478 ms
30,148 KB
testcase_25 AC 511 ms
26,080 KB
testcase_26 AC 510 ms
26,096 KB
testcase_27 AC 510 ms
26,076 KB
testcase_28 AC 510 ms
26,080 KB
testcase_29 AC 459 ms
30,184 KB
testcase_30 AC 518 ms
26,140 KB
testcase_31 AC 508 ms
26,056 KB
testcase_32 AC 526 ms
26,168 KB
testcase_33 AC 527 ms
26,156 KB
testcase_34 AC 505 ms
26,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n", "*l")
local a = {}
local b = {}
s = io.read()
for v in s:gmatch("%d") do
  table.insert(a, tonumber(v))
end
s = io.read()
for v in s:gmatch("%d") do
  table.insert(b, tonumber(v))
end
local t = {0}
for i = 1, n do
  if a[i] == b[i] then
    table.insert(t, i)
  end
end
table.insert(t, n + 1)
c = 0
for i = 1, #t - 1 do
  if 1 < t[i + 1] - t[i] then
    c = c + 1
  end
end
print(c)
0