結果

問題 No.1183 コイン遊び
ユーザー rymg111rymg111
提出日時 2020-09-22 23:25:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,724 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 4,404 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 76,204 KB
最終ジャッジ日時 2024-06-26 23:55:56
合計ジャッジ時間 44,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,964 KB
testcase_01 AC 129 ms
54,036 KB
testcase_02 AC 130 ms
54,040 KB
testcase_03 AC 126 ms
53,972 KB
testcase_04 AC 121 ms
54,220 KB
testcase_05 AC 127 ms
54,036 KB
testcase_06 AC 126 ms
54,232 KB
testcase_07 AC 125 ms
54,068 KB
testcase_08 AC 193 ms
56,820 KB
testcase_09 AC 194 ms
56,652 KB
testcase_10 AC 347 ms
58,828 KB
testcase_11 AC 552 ms
59,364 KB
testcase_12 AC 1,312 ms
73,504 KB
testcase_13 AC 1,278 ms
72,912 KB
testcase_14 AC 1,570 ms
75,332 KB
testcase_15 AC 1,634 ms
75,940 KB
testcase_16 AC 1,634 ms
75,628 KB
testcase_17 AC 1,653 ms
75,920 KB
testcase_18 AC 1,620 ms
75,704 KB
testcase_19 AC 1,621 ms
75,776 KB
testcase_20 AC 1,640 ms
75,848 KB
testcase_21 AC 1,690 ms
75,740 KB
testcase_22 AC 1,606 ms
75,724 KB
testcase_23 AC 1,624 ms
75,848 KB
testcase_24 AC 1,631 ms
75,880 KB
testcase_25 AC 1,608 ms
75,400 KB
testcase_26 AC 1,724 ms
75,668 KB
testcase_27 AC 1,660 ms
75,672 KB
testcase_28 AC 1,612 ms
76,056 KB
testcase_29 AC 1,632 ms
75,556 KB
testcase_30 AC 1,601 ms
76,204 KB
testcase_31 AC 1,638 ms
75,684 KB
testcase_32 AC 1,633 ms
75,616 KB
testcase_33 AC 1,665 ms
75,812 KB
testcase_34 AC 1,645 ms
75,808 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;
		int index = 0;
		while(index != length) {
			if(before[index] != after[index]) {
				if(index == length - 1 || before[index + 1] == after[index + 1]) {
					count++;
				}
			}
			index++;
		}
		System.out.println(count);
	}
}
0