結果

問題 No.1183 コイン遊び
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-16 16:32:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 3,261 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 71,156 KB
最終ジャッジ日時 2024-11-08 02:08:47
合計ジャッジ時間 29,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
46,420 KB
testcase_01 AC 138 ms
41,600 KB
testcase_02 WA -
testcase_03 AC 127 ms
40,988 KB
testcase_04 AC 118 ms
40,124 KB
testcase_05 AC 131 ms
41,284 KB
testcase_06 AC 130 ms
40,976 KB
testcase_07 AC 116 ms
40,028 KB
testcase_08 AC 194 ms
42,868 KB
testcase_09 AC 199 ms
43,272 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,362 ms
62,008 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,684 ms
65,684 KB
testcase_16 AC 1,654 ms
65,692 KB
testcase_17 AC 1,691 ms
65,596 KB
testcase_18 AC 1,683 ms
65,808 KB
testcase_19 AC 1,635 ms
65,920 KB
testcase_20 AC 1,633 ms
66,128 KB
testcase_21 AC 1,696 ms
65,780 KB
testcase_22 AC 1,712 ms
65,872 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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 ++;
	            				break;
	            			}
	            		}
	            	}

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