結果

問題 No.1183 コイン遊び
ユーザー tentententen
提出日時 2020-08-24 10:44:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 74,832 KB
最終ジャッジ日時 2024-11-06 08:40:11
合計ジャッジ時間 17,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,176 KB
testcase_01 AC 128 ms
53,976 KB
testcase_02 AC 132 ms
54,008 KB
testcase_03 AC 133 ms
54,024 KB
testcase_04 AC 129 ms
53,988 KB
testcase_05 AC 129 ms
54,212 KB
testcase_06 AC 130 ms
54,420 KB
testcase_07 AC 129 ms
54,016 KB
testcase_08 AC 139 ms
54,300 KB
testcase_09 AC 156 ms
54,160 KB
testcase_10 AC 203 ms
54,608 KB
testcase_11 AC 235 ms
57,048 KB
testcase_12 AC 461 ms
68,564 KB
testcase_13 AC 458 ms
67,704 KB
testcase_14 AC 450 ms
73,900 KB
testcase_15 AC 459 ms
74,360 KB
testcase_16 AC 449 ms
74,832 KB
testcase_17 AC 459 ms
74,532 KB
testcase_18 AC 448 ms
74,488 KB
testcase_19 AC 449 ms
74,620 KB
testcase_20 AC 455 ms
74,760 KB
testcase_21 AC 461 ms
74,460 KB
testcase_22 AC 463 ms
74,684 KB
testcase_23 AC 464 ms
74,336 KB
testcase_24 AC 456 ms
74,384 KB
testcase_25 AC 461 ms
74,416 KB
testcase_26 AC 460 ms
74,472 KB
testcase_27 AC 459 ms
74,620 KB
testcase_28 AC 456 ms
74,680 KB
testcase_29 AC 425 ms
74,736 KB
testcase_30 AC 451 ms
74,708 KB
testcase_31 AC 453 ms
74,648 KB
testcase_32 AC 452 ms
74,680 KB
testcase_33 AC 460 ms
74,540 KB
testcase_34 AC 457 ms
74,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        sc.nextLine();
        char[] arr1 = sc.nextLine().toCharArray();
        char[] arr2 = sc.nextLine().toCharArray();
        boolean prev = true;
        int count = 0;
        for (int i = 0; i < arr1.length; i += 2) {
            boolean current = (arr1[i] == arr2[i]);
            if (prev && !current) {
                count++;
            }
            prev = current;
        }
        System.out.println(count);
    }
}
0