結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー tanon710tanon710
提出日時 2020-09-11 22:17:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-12-27 15:06:48
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=list(map(int,input().split()))
t=list(map(int,input().split()))
ans=0
cnt_s1=0
cnt_s2=0
cnt_t1=0
cnt_t2=0
for val in s:
    if val==1:
        cnt_s1+=1
    if val==2:
        ans+=n
        cnt_s2+=1
for val in t:
    if val==1:
        cnt_t1+=1
    if val==2:
        ans+=(n-cnt_s2)
        cnt_t2+=1
if cnt_s2==0 and cnt_t2==0:
    print(max(cnt_s1,cnt_t1))
elif cnt_s2==0 and cnt_t2!=0:
    print(ans+cnt_t1)
elif cnt_s2!=0 and cnt_t2==0:
    print(ans+cnt_s1)
elif cnt_s2!=0 and cnt_t2!=0:
    print(ans)
0