結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー tentententen
提出日時 2020-09-12 12:33:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 42,744 KB
最終ジャッジ日時 2024-06-10 06:27:41
合計ジャッジ時間 8,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,424 KB
testcase_01 AC 105 ms
41,140 KB
testcase_02 AC 110 ms
40,956 KB
testcase_03 AC 114 ms
41,640 KB
testcase_04 AC 137 ms
42,636 KB
testcase_05 AC 143 ms
41,588 KB
testcase_06 AC 152 ms
41,472 KB
testcase_07 AC 125 ms
41,856 KB
testcase_08 AC 130 ms
42,260 KB
testcase_09 AC 164 ms
42,388 KB
testcase_10 AC 154 ms
41,856 KB
testcase_11 AC 170 ms
42,488 KB
testcase_12 AC 170 ms
42,244 KB
testcase_13 AC 132 ms
41,352 KB
testcase_14 AC 120 ms
41,244 KB
testcase_15 AC 175 ms
42,232 KB
testcase_16 AC 155 ms
42,264 KB
testcase_17 AC 151 ms
42,232 KB
testcase_18 AC 155 ms
42,528 KB
testcase_19 AC 155 ms
42,292 KB
testcase_20 AC 130 ms
41,580 KB
testcase_21 AC 158 ms
42,504 KB
testcase_22 AC 148 ms
41,828 KB
testcase_23 AC 160 ms
42,336 KB
testcase_24 AC 150 ms
41,960 KB
testcase_25 AC 155 ms
42,196 KB
testcase_26 AC 126 ms
41,800 KB
testcase_27 AC 113 ms
41,276 KB
testcase_28 AC 151 ms
42,468 KB
testcase_29 AC 146 ms
42,132 KB
testcase_30 AC 148 ms
42,264 KB
testcase_31 AC 154 ms
42,744 KB
testcase_32 AC 157 ms
42,628 KB
testcase_33 AC 153 ms
42,396 KB
testcase_34 AC 158 ms
42,724 KB
testcase_35 AC 155 ms
42,700 KB
testcase_36 AC 146 ms
42,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int ans = 0;
    	int xOne = 0;
    	int xTwo = 0;
    	for (int i = 0; i < n; i++) {
    	    int x = sc.nextInt();
    	    if (x == 1) {
    	        xOne++;
    	    } else if (x == 2) {
    	        xTwo++;
    	        ans += n;
    	    }
    	}
    	int yOne = 0;
    	int yTwo = 0;
    	for (int i = 0; i < n; i++) {
    	    int x = sc.nextInt();
    	    if (x == 1) {
    	        yOne++;
    	    } else if (x == 2) {
    	        yTwo++;
    	        ans += n - xTwo;
    	    }
    	}
    	if (xTwo == 0 && yTwo == 0) {
    	    ans += Math.max(xOne, yOne);
    	} else if (xTwo == 0) {
    	    ans += yOne;
    	} else if (yTwo == 0) {
    	    ans += xOne;
    	}
    	System.out.println(ans);
	}
}
0