結果

問題 No.1150 シュークリームゲーム(Easy)
ユーザー rlangevinrlangevin
提出日時 2023-04-10 12:33:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-10-05 20:15:50
合計ジャッジ時間 4,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,316 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 33 ms
51,840 KB
testcase_07 AC 30 ms
51,840 KB
testcase_08 AC 32 ms
51,968 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 33 ms
52,096 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 35 ms
52,224 KB
testcase_15 AC 35 ms
52,224 KB
testcase_16 AC 34 ms
51,840 KB
testcase_17 AC 35 ms
52,096 KB
testcase_18 AC 34 ms
52,096 KB
testcase_19 AC 34 ms
51,840 KB
testcase_20 AC 34 ms
52,096 KB
testcase_21 AC 34 ms
52,096 KB
testcase_22 AC 63 ms
88,448 KB
testcase_23 AC 63 ms
88,192 KB
testcase_24 AC 62 ms
86,016 KB
testcase_25 AC 65 ms
87,552 KB
testcase_26 AC 68 ms
90,752 KB
testcase_27 AC 66 ms
91,520 KB
testcase_28 AC 64 ms
92,160 KB
testcase_29 AC 62 ms
87,296 KB
testcase_30 AC 62 ms
88,576 KB
testcase_31 AC 64 ms
88,320 KB
testcase_32 AC 66 ms
88,320 KB
testcase_33 AC 65 ms
88,576 KB
testcase_34 AC 65 ms
91,136 KB
testcase_35 AC 64 ms
90,880 KB
testcase_36 AC 68 ms
92,032 KB
testcase_37 AC 66 ms
92,032 KB
testcase_38 AC 62 ms
87,424 KB
testcase_39 AC 63 ms
87,424 KB
testcase_40 AC 64 ms
89,088 KB
testcase_41 AC 65 ms
91,904 KB
testcase_42 AC 63 ms
89,600 KB
testcase_43 AC 62 ms
89,728 KB
testcase_44 AC 65 ms
92,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s, t = map(int, input().split())
s, t = s - 1, t - 1
A = list(map(int, input().split()))

L1, L2 = [], []
now = s + 1
while (now - t) % N:
    L1.append(A[now % N])
    now += 1
now = (s - 1) % N
while (now - t) % N:
    L2.append(A[now % N])
    now -= 1

S = sum(A)
val = 0
N1, N2 = len(L1), len(L2)
if N1 % 2 and N2 % 2:
    val = max(sum(L1[:N1//2]) + sum(L2[:N2//2 + 1]), sum(L1[:N1//2 + 1]) + sum(L2[:N2//2]))
else:
    val = sum(L1[:(N1 + 1)//2]) + sum(L2[:(N2 + 1)//2])

print(2 * val - S + A[s] * 2)
0