結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー uni_pythonuni_python
提出日時 2020-09-12 18:14:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-06-10 17:19:09
合計ジャッジ時間 2,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,440 KB
testcase_01 AC 32 ms
52,824 KB
testcase_02 AC 35 ms
52,744 KB
testcase_03 AC 37 ms
52,628 KB
testcase_04 AC 36 ms
53,684 KB
testcase_05 AC 36 ms
52,520 KB
testcase_06 AC 36 ms
52,212 KB
testcase_07 AC 35 ms
53,568 KB
testcase_08 AC 35 ms
52,204 KB
testcase_09 AC 37 ms
53,108 KB
testcase_10 AC 37 ms
53,208 KB
testcase_11 AC 37 ms
52,888 KB
testcase_12 AC 37 ms
53,004 KB
testcase_13 AC 35 ms
53,452 KB
testcase_14 AC 34 ms
52,376 KB
testcase_15 AC 33 ms
53,128 KB
testcase_16 AC 34 ms
53,068 KB
testcase_17 AC 33 ms
52,868 KB
testcase_18 AC 38 ms
54,196 KB
testcase_19 AC 36 ms
52,628 KB
testcase_20 AC 35 ms
53,232 KB
testcase_21 AC 33 ms
53,128 KB
testcase_22 AC 33 ms
52,624 KB
testcase_23 AC 32 ms
53,456 KB
testcase_24 AC 34 ms
52,936 KB
testcase_25 AC 34 ms
52,704 KB
testcase_26 AC 33 ms
53,040 KB
testcase_27 AC 33 ms
53,240 KB
testcase_28 AC 34 ms
53,420 KB
testcase_29 AC 35 ms
52,352 KB
testcase_30 AC 37 ms
53,480 KB
testcase_31 AC 38 ms
52,268 KB
testcase_32 AC 36 ms
53,480 KB
testcase_33 AC 35 ms
53,292 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    S=LI()
    T=LI()
    
    def calc(S):
        temp=0
        for i in range(N):
            if S[i]==1:
                temp+=1
            elif S[i]==2:
                temp+=N
        return temp
        
    ans=max(calc(S),calc(T))
    print(ans)
    
    


main()
0