結果

問題 No.1183 コイン遊び
ユーザー yumechiyumechi
提出日時 2021-03-02 00:45:22
言語 Go
(1.22.1)
結果
RE  
実行時間 -
コード長 522 bytes
コンパイル時間 11,437 ms
コンパイル使用メモリ 237,984 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-10-03 01:21:43
合計ジャッジ時間 13,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strings"
)

func main() {
	r := bufio.NewReader(os.Stdin)
	w := bufio.NewWriter(os.Stdout)
	defer w.Flush()

	var n int
	fmt.Fscanln(r, &n)
	sb, _, _ := r.ReadLine()
	s := string(sb)
	tb, _, _ := r.ReadLine()
	t := string(tb)

	an := strings.Split(s, " ")
	bn := strings.Split(t, " ")

	var ans int = 0
	var f bool = an[0] != bn[0]
	for i := 0; i < n; i++ {
		if an[i] != bn[i] {
			if f {
				ans += 1
				f = false
			}
		} else {
			f = true
		}
	}
	fmt.Fprintln(w, ans)
}
0