結果

問題 No.1183 コイン遊び
ユーザー ApassApass
提出日時 2020-08-22 13:24:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 80,020 KB
最終ジャッジ日時 2024-10-15 07:38:46
合計ジャッジ時間 17,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,704 KB
testcase_01 AC 54 ms
50,204 KB
testcase_02 AC 54 ms
50,276 KB
testcase_03 AC 54 ms
49,988 KB
testcase_04 AC 54 ms
50,072 KB
testcase_05 AC 55 ms
50,260 KB
testcase_06 AC 54 ms
50,380 KB
testcase_07 AC 53 ms
50,440 KB
testcase_08 AC 75 ms
52,916 KB
testcase_09 AC 64 ms
51,184 KB
testcase_10 AC 124 ms
53,932 KB
testcase_11 AC 168 ms
55,208 KB
testcase_12 AC 448 ms
68,656 KB
testcase_13 AC 432 ms
66,576 KB
testcase_14 AC 457 ms
73,520 KB
testcase_15 AC 463 ms
75,632 KB
testcase_16 AC 507 ms
79,692 KB
testcase_17 AC 447 ms
79,732 KB
testcase_18 AC 460 ms
79,508 KB
testcase_19 AC 502 ms
79,756 KB
testcase_20 AC 503 ms
79,856 KB
testcase_21 AC 495 ms
79,712 KB
testcase_22 AC 461 ms
79,764 KB
testcase_23 AC 460 ms
79,668 KB
testcase_24 AC 498 ms
79,728 KB
testcase_25 AC 459 ms
79,900 KB
testcase_26 AC 465 ms
79,732 KB
testcase_27 AC 503 ms
79,788 KB
testcase_28 AC 507 ms
80,020 KB
testcase_29 AC 458 ms
79,560 KB
testcase_30 AC 466 ms
80,012 KB
testcase_31 AC 463 ms
79,864 KB
testcase_32 AC 473 ms
79,820 KB
testcase_33 AC 495 ms
79,824 KB
testcase_34 AC 502 ms
75,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class B_CoinPlay {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static StringTokenizer st;

    private static int readInt() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Integer.parseInt(st.nextToken());
    }

    private static int[] readIntArray(final int n) throws IOException {
        int[] a = new int[n];
        for (int i = 0; i < n; i++) a[i]= readInt();
        return a;
    }

    public static void main(String[] args) throws IOException {
        int N = readInt();
        int[] A = readIntArray(N);
        int[] B = readIntArray(N);

        int count = 0;
        boolean theSame = true;
        for (int i = 0; i < N; i++) {
            if (A[i] == B[i]) theSame = true;
            else {
                if (theSame) count ++;
                theSame = false;
            }
        }

        System.out.println(count);
    }
}
0