結果

問題 No.2196 Pair Bonus
ユーザー HydruHydru
提出日時 2023-01-20 21:43:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 139,300 KB
最終ジャッジ日時 2024-06-23 09:39:57
合計ジャッジ時間 2,786 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,236 KB
testcase_01 AC 38 ms
52,344 KB
testcase_02 AC 35 ms
52,428 KB
testcase_03 AC 175 ms
139,300 KB
testcase_04 AC 173 ms
139,296 KB
testcase_05 AC 43 ms
61,456 KB
testcase_06 AC 40 ms
61,340 KB
testcase_07 AC 42 ms
60,688 KB
testcase_08 AC 67 ms
84,504 KB
testcase_09 AC 163 ms
123,664 KB
testcase_10 AC 127 ms
115,256 KB
testcase_11 AC 73 ms
87,184 KB
testcase_12 AC 144 ms
118,704 KB
testcase_13 AC 42 ms
60,792 KB
testcase_14 AC 58 ms
78,304 KB
testcase_15 AC 43 ms
61,964 KB
testcase_16 AC 159 ms
127,820 KB
testcase_17 AC 47 ms
64,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
X=list(map(int,input().split()))
Y=list(map(int,input().split()))

ans=0

for i in range(n):
    Q=[
        A[2*i]+A[2*i+1]+X[i],
        B[2*i]+B[2*i+1]+X[i],
        A[2*i]+B[2*i+1]+Y[i],
        B[2*i]+A[2*i+1]+Y[i]
        ]
    ans+=max(Q)
    

print(ans)
0