結果

問題 No.1183 コイン遊び
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-16 17:23:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,772 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 3,347 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 66,024 KB
最終ジャッジ日時 2024-11-08 02:42:58
合計ジャッジ時間 46,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,132 KB
testcase_01 AC 133 ms
41,420 KB
testcase_02 AC 136 ms
41,152 KB
testcase_03 AC 135 ms
41,012 KB
testcase_04 AC 135 ms
41,152 KB
testcase_05 AC 129 ms
41,140 KB
testcase_06 AC 129 ms
41,144 KB
testcase_07 AC 133 ms
41,580 KB
testcase_08 AC 203 ms
43,316 KB
testcase_09 AC 202 ms
43,492 KB
testcase_10 AC 363 ms
47,944 KB
testcase_11 AC 582 ms
48,356 KB
testcase_12 AC 1,426 ms
62,764 KB
testcase_13 AC 1,332 ms
62,372 KB
testcase_14 AC 1,622 ms
64,884 KB
testcase_15 AC 1,730 ms
65,844 KB
testcase_16 AC 1,730 ms
65,804 KB
testcase_17 AC 1,772 ms
65,536 KB
testcase_18 AC 1,667 ms
65,664 KB
testcase_19 AC 1,701 ms
66,024 KB
testcase_20 AC 1,671 ms
65,756 KB
testcase_21 AC 1,633 ms
65,688 KB
testcase_22 AC 1,690 ms
65,248 KB
testcase_23 AC 1,710 ms
65,548 KB
testcase_24 AC 1,690 ms
65,440 KB
testcase_25 AC 1,672 ms
65,708 KB
testcase_26 AC 1,727 ms
65,884 KB
testcase_27 AC 1,684 ms
65,804 KB
testcase_28 AC 1,734 ms
65,700 KB
testcase_29 AC 1,668 ms
65,504 KB
testcase_30 AC 1,655 ms
65,580 KB
testcase_31 AC 1,693 ms
65,816 KB
testcase_32 AC 1,678 ms
65,724 KB
testcase_33 AC 1,696 ms
65,536 KB
testcase_34 AC 1,734 ms
64,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {
	    		Scanner sc = new Scanner(System.in);
	            int n = sc.nextInt();
	            int[] ai = new int[n];
	            int[] bi = new int[n];
	            for (int i = 0; i < n; i++) {
	            	ai[i] = sc.nextInt();
	            }
	            for (int i =0; i < n; i++) {
	            	bi[i]=sc.nextInt();
	            }
	            sc.close();

	            int count = 0;

	            for (int i = 0; i < n; i ++) {
	            	if (ai[i] != bi[i]) {
	            		for (int j = i; j < n; j ++) {
	            			if (ai[j] == bi[j]) {
	            				count ++;
	            				i = j;
	            				break;
	            			}
	            			if (j == n-1) {
	            				count ++;
	            				i = j ;
	            				break;
	            			}
	            		}
	            	}

	            }
	            System.out.println(count);
}}
0