結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー titiatitia
提出日時 2020-09-11 21:32:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 740 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-08 06:29:39
合計ジャッジ時間 4,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 35 ms
10,624 KB
testcase_06 AC 51 ms
11,008 KB
testcase_07 AC 36 ms
10,752 KB
testcase_08 AC 41 ms
10,880 KB
testcase_09 AC 64 ms
11,264 KB
testcase_10 AC 55 ms
11,008 KB
testcase_11 AC 109 ms
12,160 KB
testcase_12 AC 67 ms
11,392 KB
testcase_13 AC 37 ms
10,624 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 71 ms
11,264 KB
testcase_16 AC 71 ms
11,264 KB
testcase_17 AC 101 ms
11,904 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 56 ms
11,136 KB
testcase_25 AC 99 ms
11,648 KB
testcase_26 AC 54 ms
10,880 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 89 ms
11,904 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 110 ms
12,160 KB
testcase_32 WA -
testcase_33 AC 64 ms
11,136 KB
testcase_34 AC 107 ms
12,288 KB
testcase_35 AC 124 ms
12,160 KB
testcase_36 AC 59 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
S=list(map(int,input().split()))
T=list(map(int,input().split()))

ANS=[[-1]*N for i in range(N)]

for i in range(N):
    if S[i]==0:
        for j in range(N):
            ANS[i][j]=0
    elif S[i]==2:
        for j in range(N):
            ANS[i][j]=1

    if T[i]==0:
        for j in range(N):
            ANS[j][i]=0
    elif T[i]==2:
        for j in range(N):
            ANS[j][i]=1

score=0
R=[0]*N
C=[0]*N

for i in range(N):
    for j in range(N):
        if ANS[i][j]==1:
            score+=1
            R[i]=-1
            C[j]=-1

        elif ANS[i][j]==-1:
            if R[i]!=-1:
                R[i]=1
                C[j]=1

print(score+max(R.count(1),C.count(1)))
0