結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー marroncastle
提出日時 2020-09-11 21:42:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-27 09:40:46
合計ジャッジ時間 2,423 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(map(int, input().split()))
T = list(map(int, input().split()))
from collections import Counter
cs = Counter(S)
ct = Counter(T)
if cs[2]>0:
  if ct[2]>0:
    print(ct[2]*N+cs[2]*N-ct[2]*cs[2])
  else:
    print(cs[2]*N+cs[1])
else:
  if ct[2]>0:
    print(ct[2]*N+ct[1])
  else:
    print(max(cs[1],ct[1]))
0