結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,136 KB
testcase_01 AC 53 ms
36,776 KB
testcase_02 AC 54 ms
36,792 KB
testcase_03 AC 54 ms
36,600 KB
testcase_04 AC 54 ms
37,088 KB
testcase_05 AC 53 ms
36,908 KB
testcase_06 AC 52 ms
36,832 KB
testcase_07 AC 51 ms
36,764 KB
testcase_08 AC 61 ms
37,164 KB
testcase_09 AC 61 ms
36,944 KB
testcase_10 AC 120 ms
41,156 KB
testcase_11 AC 165 ms
44,236 KB
testcase_12 AC 429 ms
56,912 KB
testcase_13 AC 423 ms
56,476 KB
testcase_14 AC 488 ms
63,752 KB
testcase_15 AC 545 ms
63,916 KB
testcase_16 AC 540 ms
70,004 KB
testcase_17 AC 548 ms
69,388 KB
testcase_18 AC 520 ms
69,464 KB
testcase_19 AC 517 ms
69,092 KB
testcase_20 AC 529 ms
69,196 KB
testcase_21 AC 530 ms
69,144 KB
testcase_22 AC 547 ms
69,168 KB
testcase_23 AC 526 ms
69,116 KB
testcase_24 AC 536 ms
69,452 KB
testcase_25 AC 536 ms
69,364 KB
testcase_26 AC 543 ms
69,360 KB
testcase_27 AC 542 ms
69,128 KB
testcase_28 AC 539 ms
69,604 KB
testcase_29 AC 534 ms
69,276 KB
testcase_30 AC 536 ms
69,352 KB
testcase_31 AC 545 ms
69,468 KB
testcase_32 AC 549 ms
69,352 KB
testcase_33 AC 551 ms
70,168 KB
testcase_34 AC 530 ms
63,864 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