結果

問題 No.1183 コイン遊び
ユーザー RISE70226821RISE70226821
提出日時 2020-09-01 17:05:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 2,430 bytes
コンパイル時間 3,950 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 70,852 KB
最終ジャッジ日時 2024-11-19 08:06:04
合計ジャッジ時間 18,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,076 KB
testcase_01 AC 52 ms
36,936 KB
testcase_02 AC 52 ms
37,016 KB
testcase_03 AC 52 ms
37,140 KB
testcase_04 AC 52 ms
36,684 KB
testcase_05 AC 52 ms
37,144 KB
testcase_06 AC 52 ms
36,988 KB
testcase_07 AC 52 ms
36,992 KB
testcase_08 AC 62 ms
37,012 KB
testcase_09 AC 62 ms
37,256 KB
testcase_10 AC 124 ms
40,856 KB
testcase_11 AC 167 ms
43,588 KB
testcase_12 AC 450 ms
57,064 KB
testcase_13 AC 420 ms
56,688 KB
testcase_14 AC 517 ms
63,756 KB
testcase_15 AC 510 ms
64,264 KB
testcase_16 AC 520 ms
70,100 KB
testcase_17 AC 481 ms
69,676 KB
testcase_18 AC 515 ms
69,948 KB
testcase_19 AC 514 ms
69,328 KB
testcase_20 AC 515 ms
70,160 KB
testcase_21 AC 473 ms
69,512 KB
testcase_22 AC 509 ms
69,968 KB
testcase_23 AC 510 ms
69,276 KB
testcase_24 AC 492 ms
69,956 KB
testcase_25 AC 526 ms
69,244 KB
testcase_26 AC 524 ms
69,272 KB
testcase_27 AC 513 ms
69,344 KB
testcase_28 AC 514 ms
69,868 KB
testcase_29 AC 512 ms
69,512 KB
testcase_30 AC 469 ms
69,824 KB
testcase_31 AC 518 ms
69,288 KB
testcase_32 AC 471 ms
69,440 KB
testcase_33 AC 527 ms
70,852 KB
testcase_34 AC 519 ms
63,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		FastScanner sc = new FastScanner(System.in);
		int N = sc.nextInt();
		int[] A = new int[N];
		int[] B = new int[N];
		int diffCount = 0;
		int ans = 0;
		for(int i = 0; i < N; i++){
			A[i] = sc.nextInt();
		}
		for(int i = 0; i < N; i++){
			B[i] = sc.nextInt();
		}
		
		// カウント
		int count = 0;
		if(A[0] != B[0]){
			count++;
		}
		for(int i = 0; i < N-1; i++){
			if(A[i] == B[i] && A[i+1] != B[i+1]){
				count++;
			}
		}
		
		// 出力
		System.out.println(count);
	}

    static class FastScanner {
        private BufferedReader reader = null;
        private StringTokenizer tokenizer = null;

        public FastScanner(InputStream in) {
            reader = new BufferedReader(new InputStreamReader(in));
            tokenizer = null;
        }

        public String next() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public String nextLine() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    return reader.readLine();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            return tokenizer.nextToken("\n");
        }

        public long nextLong() {
            return Long.parseLong(next());
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

        public double nextDouble() {
             return Double.parseDouble(next());
         }

        public int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt();
            return a;
        }

        public long[] nextLongArray(int n) {
            long[] a = new long[n];
            for (int i = 0; i < n; i++)
                a[i] = nextLong();
            return a;
        } 
    }
}

0