結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー H20H20
提出日時 2021-08-19 08:56:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 53,948 KB
最終ジャッジ日時 2024-10-12 06:37:15
合計ジャッジ時間 2,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,564 KB
testcase_01 AC 35 ms
51,824 KB
testcase_02 AC 34 ms
52,824 KB
testcase_03 AC 35 ms
53,096 KB
testcase_04 AC 35 ms
52,492 KB
testcase_05 AC 35 ms
51,984 KB
testcase_06 AC 35 ms
52,136 KB
testcase_07 AC 35 ms
52,460 KB
testcase_08 AC 34 ms
53,212 KB
testcase_09 AC 36 ms
52,968 KB
testcase_10 AC 35 ms
52,328 KB
testcase_11 AC 35 ms
53,124 KB
testcase_12 AC 35 ms
52,556 KB
testcase_13 AC 36 ms
52,212 KB
testcase_14 AC 35 ms
52,336 KB
testcase_15 AC 36 ms
53,816 KB
testcase_16 AC 36 ms
52,944 KB
testcase_17 AC 35 ms
52,968 KB
testcase_18 AC 36 ms
52,376 KB
testcase_19 AC 35 ms
53,948 KB
testcase_20 AC 35 ms
53,068 KB
testcase_21 AC 37 ms
52,500 KB
testcase_22 AC 37 ms
52,600 KB
testcase_23 AC 36 ms
52,680 KB
testcase_24 AC 37 ms
52,652 KB
testcase_25 AC 36 ms
52,200 KB
testcase_26 AC 35 ms
52,736 KB
testcase_27 AC 33 ms
52,564 KB
testcase_28 AC 35 ms
52,376 KB
testcase_29 AC 36 ms
52,952 KB
testcase_30 AC 35 ms
52,552 KB
testcase_31 AC 35 ms
53,068 KB
testcase_32 AC 36 ms
53,744 KB
testcase_33 AC 36 ms
53,076 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(map(int,input().split()))
T = list(map(int,input().split()))
ssum = 0
tsum = 0
for s in S:
    if s==1:
        ssum+=1
    if s==2:
        ssum+=N
for t in T:
    if t==1:
        tsum+=1
    if t==2:
        tsum+=N
print(max(ssum,tsum))
0