結果

問題 No.1183 コイン遊び
ユーザー RISE70226821RISE70226821
提出日時 2020-08-31 14:52:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,794 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 75,932 KB
最終ジャッジ日時 2024-04-27 18:44:34
合計ジャッジ時間 46,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,552 KB
testcase_01 AC 131 ms
54,096 KB
testcase_02 AC 118 ms
52,900 KB
testcase_03 AC 114 ms
54,224 KB
testcase_04 AC 128 ms
53,828 KB
testcase_05 AC 130 ms
53,752 KB
testcase_06 AC 129 ms
54,036 KB
testcase_07 AC 133 ms
53,772 KB
testcase_08 AC 203 ms
56,612 KB
testcase_09 AC 211 ms
56,632 KB
testcase_10 AC 388 ms
58,940 KB
testcase_11 AC 562 ms
59,128 KB
testcase_12 AC 1,369 ms
73,172 KB
testcase_13 AC 1,288 ms
73,136 KB
testcase_14 AC 1,794 ms
75,220 KB
testcase_15 AC 1,708 ms
75,872 KB
testcase_16 AC 1,662 ms
75,636 KB
testcase_17 AC 1,682 ms
75,732 KB
testcase_18 AC 1,692 ms
75,812 KB
testcase_19 AC 1,670 ms
75,752 KB
testcase_20 AC 1,722 ms
75,552 KB
testcase_21 AC 1,731 ms
75,680 KB
testcase_22 AC 1,741 ms
75,288 KB
testcase_23 AC 1,715 ms
75,800 KB
testcase_24 AC 1,727 ms
75,932 KB
testcase_25 AC 1,697 ms
74,912 KB
testcase_26 AC 1,778 ms
75,604 KB
testcase_27 AC 1,703 ms
75,640 KB
testcase_28 AC 1,770 ms
75,344 KB
testcase_29 AC 1,667 ms
75,780 KB
testcase_30 AC 1,751 ms
74,900 KB
testcase_31 AC 1,735 ms
75,720 KB
testcase_32 AC 1,735 ms
75,820 KB
testcase_33 AC 1,667 ms
75,808 KB
testcase_34 AC 1,675 ms
75,844 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