結果

問題 No.1183 コイン遊び
ユーザー simansiman
提出日時 2020-08-26 03:18:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 107,244 KB
最終ジャッジ日時 2024-11-06 11:58:13
合計ジャッジ時間 22,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 91 ms
12,416 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 89 ms
12,416 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 93 ms
12,160 KB
testcase_09 AC 94 ms
12,160 KB
testcase_10 AC 109 ms
14,208 KB
testcase_11 AC 139 ms
19,200 KB
testcase_12 AC 547 ms
87,936 KB
testcase_13 AC 500 ms
80,640 KB
testcase_14 AC 791 ms
105,200 KB
testcase_15 AC 828 ms
106,984 KB
testcase_16 AC 833 ms
106,896 KB
testcase_17 AC 836 ms
106,980 KB
testcase_18 AC 833 ms
106,996 KB
testcase_19 AC 835 ms
107,016 KB
testcase_20 AC 835 ms
107,144 KB
testcase_21 AC 806 ms
107,020 KB
testcase_22 AC 811 ms
107,096 KB
testcase_23 AC 819 ms
107,112 KB
testcase_24 AC 806 ms
107,116 KB
testcase_25 AC 830 ms
107,160 KB
testcase_26 AC 830 ms
107,036 KB
testcase_27 AC 837 ms
107,120 KB
testcase_28 AC 832 ms
106,904 KB
testcase_29 AC 810 ms
106,988 KB
testcase_30 AC 821 ms
107,000 KB
testcase_31 AC 835 ms
106,932 KB
testcase_32 AC 838 ms
107,148 KB
testcase_33 AC 839 ms
107,244 KB
testcase_34 AC 836 ms
106,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)

flip = false
ans = 0

A.zip(B) do |a, b|
  if a == b
    flip = false
  else
    if !flip
      flip = true
      ans += 1
    end
  end
end

puts ans
0