結果

問題 No.2196 Pair Bonus
ユーザー H20H20
提出日時 2023-01-20 21:47:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 139,080 KB
最終ジャッジ日時 2024-06-23 09:44:19
合計ジャッジ時間 2,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 185 ms
139,080 KB
testcase_04 AC 186 ms
139,032 KB
testcase_05 AC 41 ms
58,752 KB
testcase_06 AC 40 ms
58,240 KB
testcase_07 AC 40 ms
58,624 KB
testcase_08 AC 85 ms
84,920 KB
testcase_09 AC 177 ms
123,352 KB
testcase_10 AC 141 ms
115,836 KB
testcase_11 AC 90 ms
87,220 KB
testcase_12 AC 155 ms
118,000 KB
testcase_13 AC 40 ms
59,264 KB
testcase_14 AC 70 ms
78,336 KB
testcase_15 AC 40 ms
59,648 KB
testcase_16 AC 171 ms
128,200 KB
testcase_17 AC 47 ms
63,744 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):
    ans += max(A[i*2]+B[i*2+1]+Y[i],
    B[i*2]+A[i*2+1]+Y[i],
    A[i*2]+A[i*2+1]+X[i],
    B[i*2]+B[i*2+1]+X[i])
print(ans)
0