結果

問題 No.1225 I hate I hate Matrix Construction
コンテスト
ユーザー ああいい
提出日時 2022-05-13 19:57:55
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 675 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,244 ms
コンパイル使用メモリ 85,120 KB
実行使用メモリ 64,840 KB
最終ジャッジ日時 2026-04-03 06:23:17
合計ジャッジ時間 3,398 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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

yoko = 0
tate = 0
ans = 0
dat = [[-1] * N for _ in range(N)]
sflag = False
tflag = False
for i in range(N):
    for j in range(N):
        if S[i] == 0 or T[j] == 0:
            dat[i][j] = 0
        elif S[i] == 2 or T[j] == 2:
            ans += 1
            dat[i][j] = 1
for s in S:
    if s == 1:
        yoko += 1
    elif s == 2:
        sflag = True
for t in T:
    if t == 1:
        tate += 1
    elif t == 2:
        tflag = True
        
if sflag and tflag:
    pass
elif not sflag:
    ans += tate
elif not tflag:
    ans += yoko
else:
    ans += max(yoko,tate)
print(ans)
0