結果

問題 No.1183 コイン遊び
ユーザー maguroflymagurofly
提出日時 2020-08-22 16:21:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 910 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 107,188 KB
最終ジャッジ日時 2024-10-15 10:25:10
合計ジャッジ時間 24,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,032 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 87 ms
12,032 KB
testcase_04 AC 87 ms
12,288 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 90 ms
12,288 KB
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 111 ms
14,336 KB
testcase_11 AC 145 ms
18,944 KB
testcase_12 AC 600 ms
88,064 KB
testcase_13 AC 548 ms
80,256 KB
testcase_14 AC 910 ms
105,116 KB
testcase_15 AC 897 ms
107,028 KB
testcase_16 AC 906 ms
107,188 KB
testcase_17 AC 893 ms
107,120 KB
testcase_18 AC 893 ms
107,032 KB
testcase_19 AC 893 ms
106,996 KB
testcase_20 AC 893 ms
106,900 KB
testcase_21 AC 898 ms
107,060 KB
testcase_22 AC 897 ms
107,116 KB
testcase_23 AC 879 ms
107,036 KB
testcase_24 AC 891 ms
106,904 KB
testcase_25 AC 903 ms
106,804 KB
testcase_26 AC 899 ms
107,124 KB
testcase_27 AC 895 ms
107,136 KB
testcase_28 AC 907 ms
107,144 KB
testcase_29 AC 895 ms
107,060 KB
testcase_30 AC 897 ms
106,932 KB
testcase_31 AC 900 ms
107,032 KB
testcase_32 AC 897 ms
106,928 KB
testcase_33 AC 903 ms
107,144 KB
testcase_34 AC 902 ms
107,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map &:to_i
b = gets.split.map &:to_i

diff = false
p(n.times.count do |i|
    if a[i] != b[i]
        if diff
            false
        else
            diff = true
            true
        end
    else
        diff = false
        false
    end
end)
0