結果

問題 No.1183 コイン遊び
ユーザー RISE70226821RISE70226821
提出日時 2020-08-31 14:52:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,894 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 66,040 KB
最終ジャッジ日時 2024-11-15 23:28:26
合計ジャッジ時間 44,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,188 KB
testcase_01 AC 111 ms
41,316 KB
testcase_02 AC 130 ms
41,468 KB
testcase_03 AC 123 ms
41,460 KB
testcase_04 AC 125 ms
41,348 KB
testcase_05 AC 124 ms
40,932 KB
testcase_06 AC 124 ms
41,744 KB
testcase_07 AC 129 ms
41,528 KB
testcase_08 AC 187 ms
43,240 KB
testcase_09 AC 182 ms
43,644 KB
testcase_10 AC 356 ms
48,072 KB
testcase_11 AC 582 ms
48,484 KB
testcase_12 AC 1,297 ms
62,964 KB
testcase_13 AC 1,240 ms
62,356 KB
testcase_14 AC 1,522 ms
65,140 KB
testcase_15 AC 1,894 ms
65,740 KB
testcase_16 AC 1,632 ms
65,520 KB
testcase_17 AC 1,540 ms
65,900 KB
testcase_18 AC 1,568 ms
65,708 KB
testcase_19 AC 1,598 ms
65,648 KB
testcase_20 AC 1,583 ms
65,736 KB
testcase_21 AC 1,591 ms
65,892 KB
testcase_22 AC 1,554 ms
65,756 KB
testcase_23 AC 1,600 ms
65,844 KB
testcase_24 AC 1,552 ms
65,712 KB
testcase_25 AC 1,607 ms
65,984 KB
testcase_26 AC 1,542 ms
65,760 KB
testcase_27 AC 1,553 ms
65,220 KB
testcase_28 AC 1,567 ms
65,520 KB
testcase_29 AC 1,573 ms
65,708 KB
testcase_30 AC 1,566 ms
65,692 KB
testcase_31 AC 1,556 ms
65,768 KB
testcase_32 AC 1,582 ms
65,908 KB
testcase_33 AC 1,629 ms
66,040 KB
testcase_34 AC 1,653 ms
65,916 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
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] A = new int[N];
		int[] B = new int[N];
		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);
	}
}
0