結果

問題 No.1183 コイン遊び
ユーザー 👑 yumechiyumechi
提出日時 2021-03-02 00:45:22
言語 Go
(1.22.1)
結果
RE  
実行時間 -
コード長 522 bytes
コンパイル時間 12,644 ms
コンパイル使用メモリ 239,884 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-14 04:12:52
合計ジャッジ時間 14,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 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