結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー tonyu0tonyu0
提出日時 2020-09-11 22:11:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-06-08 10:43:54
合計ジャッジ時間 11,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 46 ms
61,184 KB
testcase_16 AC 46 ms
60,672 KB
testcase_17 AC 46 ms
61,056 KB
testcase_18 AC 535 ms
68,736 KB
testcase_19 AC 56 ms
62,976 KB
testcase_20 AC 157 ms
66,304 KB
testcase_21 AC 372 ms
68,352 KB
testcase_22 AC 166 ms
64,640 KB
testcase_23 AC 200 ms
66,048 KB
testcase_24 AC 46 ms
60,032 KB
testcase_25 AC 46 ms
61,056 KB
testcase_26 AC 43 ms
60,416 KB
testcase_27 WA -
testcase_28 AC 85 ms
64,128 KB
testcase_29 AC 230 ms
66,048 KB
testcase_30 AC 372 ms
67,328 KB
testcase_31 AC 418 ms
68,352 KB
testcase_32 AC 1,201 ms
77,440 KB
testcase_33 AC 171 ms
64,896 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(map(int, input().split()))  # 行情報
t = list(map(int, input().split()))  # 列情報
u = [[False] * n for _ in range(n)]

ans = 0
for i in range(n):
    if s[i] == 2:
        for j in range(n):
            u[i][j] = True
            ans += 1
    if t[i] == 2:
        for j in range(n):
            u[j][i] = True
            ans += 1

for i in range(n):
    for j in range(n):
        if s[i] == 1 and t[j] == 1:
            ok1 = False
            ok2 = False
            for k in range(n):
                ok1 |= u[i][k]
                ok2 |= u[k][j]
            if not (ok1 and ok2):
                ans += 1
                u[i][j] = True
print(ans)
0