結果

問題 No.1183 コイン遊び
ユーザー 👑 obakyanobakyan
提出日時 2020-09-19 20:12:47
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 27,232 KB
最終ジャッジ日時 2024-06-23 18:16:05
合計ジャッジ時間 12,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 27 ms
6,944 KB
testcase_12 AC 268 ms
23,120 KB
testcase_13 AC 239 ms
22,968 KB
testcase_14 AC 395 ms
23,144 KB
testcase_15 AC 445 ms
23,176 KB
testcase_16 AC 443 ms
23,072 KB
testcase_17 AC 422 ms
23,144 KB
testcase_18 AC 441 ms
23,104 KB
testcase_19 AC 442 ms
23,128 KB
testcase_20 AC 423 ms
23,164 KB
testcase_21 AC 404 ms
27,164 KB
testcase_22 AC 336 ms
27,160 KB
testcase_23 AC 367 ms
19,120 KB
testcase_24 AC 374 ms
27,200 KB
testcase_25 AC 419 ms
23,072 KB
testcase_26 AC 421 ms
23,100 KB
testcase_27 AC 420 ms
23,180 KB
testcase_28 AC 420 ms
23,116 KB
testcase_29 AC 403 ms
27,232 KB
testcase_30 AC 403 ms
23,132 KB
testcase_31 AC 424 ms
23,276 KB
testcase_32 AC 440 ms
23,068 KB
testcase_33 AC 444 ms
23,132 KB
testcase_34 AC 424 ms
23,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local a = {}
local b = {}
for i = 1, n do
  a[i] = io.read("*n")
end
for i = 1, n do
  b[i] = io.read("*n")
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