結果
| 問題 | No.1225 I hate I hate Matrix Construction |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-11 21:42:47 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 2,000 ms |
| コード長 | 332 bytes |
| 記録 | |
| コンパイル時間 | 532 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-06-02 00:09:53 |
| 合計ジャッジ時間 | 5,558 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 35 |
ソースコード
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]))