結果

問題 No.2196 Pair Bonus
ユーザー ニックネームニックネーム
提出日時 2023-01-20 21:53:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,288 KB
最終ジャッジ日時 2024-06-23 09:51:33
合計ジャッジ時間 4,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 424 ms
43,288 KB
testcase_04 AC 439 ms
43,244 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 93 ms
16,044 KB
testcase_09 AC 419 ms
39,740 KB
testcase_10 AC 277 ms
30,200 KB
testcase_11 AC 116 ms
18,484 KB
testcase_12 AC 356 ms
35,812 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 63 ms
13,684 KB
testcase_15 AC 34 ms
11,008 KB
testcase_16 AC 416 ms
40,772 KB
testcase_17 AC 33 ms
11,264 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):
    p = max(a[2*i]+a[2*i+1],b[2*i]+b[2*i+1])+x[i]
    q = max(a[2*i]+b[2*i+1],b[2*i]+a[2*i+1])+y[i]
    ans += max(p,q)
print(ans)
0