結果

問題 No.1183 コイン遊び
ユーザー rymg111rymg111
提出日時 2020-09-22 23:36:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,721 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 74,896 KB
実行使用メモリ 76,060 KB
最終ジャッジ日時 2024-06-27 00:07:17
合計ジャッジ時間 43,826 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,240 KB
testcase_01 AC 114 ms
52,940 KB
testcase_02 AC 129 ms
54,000 KB
testcase_03 AC 129 ms
54,120 KB
testcase_04 AC 125 ms
54,004 KB
testcase_05 AC 128 ms
54,012 KB
testcase_06 AC 128 ms
54,220 KB
testcase_07 AC 129 ms
54,320 KB
testcase_08 AC 189 ms
56,848 KB
testcase_09 AC 194 ms
56,488 KB
testcase_10 AC 356 ms
59,144 KB
testcase_11 AC 550 ms
59,368 KB
testcase_12 AC 1,348 ms
73,400 KB
testcase_13 AC 1,324 ms
73,556 KB
testcase_14 AC 1,607 ms
75,588 KB
testcase_15 AC 1,636 ms
75,740 KB
testcase_16 AC 1,648 ms
75,900 KB
testcase_17 AC 1,653 ms
75,752 KB
testcase_18 AC 1,623 ms
75,976 KB
testcase_19 AC 1,627 ms
76,020 KB
testcase_20 AC 1,665 ms
75,860 KB
testcase_21 AC 1,693 ms
76,024 KB
testcase_22 AC 1,668 ms
75,836 KB
testcase_23 AC 1,661 ms
75,956 KB
testcase_24 AC 1,643 ms
76,012 KB
testcase_25 AC 1,644 ms
75,900 KB
testcase_26 AC 1,643 ms
75,800 KB
testcase_27 AC 1,721 ms
75,572 KB
testcase_28 AC 1,609 ms
76,028 KB
testcase_29 AC 1,622 ms
75,508 KB
testcase_30 AC 1,621 ms
75,928 KB
testcase_31 AC 1,653 ms
75,924 KB
testcase_32 AC 1,659 ms
76,028 KB
testcase_33 AC 1,668 ms
76,060 KB
testcase_34 AC 1,635 ms
75,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int length = sc.nextInt();
		int[] before = new int[length];
		for(int i = 0; i < length; i++) {
			before[i] = sc.nextInt();
		}
		int[] after = new int[length];
		for(int j = 0; j < length; j++) {
			after[j] = sc.nextInt();
		}
		int count = 0;
		if(before[0] != after[0]) {
			count++;
		}
		for(int i = 0; i < length - 1; i++) {
			if(before[i] == after[i] && before[i + 1] != after[i + 1]) {
				count++;
			}
		}
		System.out.println(count);
	}
}
0