結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 40 ms
51,712 KB
testcase_17 AC 40 ms
51,840 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 40 ms
51,968 KB
testcase_20 AC 41 ms
52,608 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 77 ms
88,192 KB
testcase_23 AC 78 ms
87,936 KB
testcase_24 AC 76 ms
86,016 KB
testcase_25 AC 76 ms
87,680 KB
testcase_26 AC 79 ms
91,136 KB
testcase_27 AC 80 ms
91,776 KB
testcase_28 AC 81 ms
92,416 KB
testcase_29 AC 76 ms
87,424 KB
testcase_30 AC 78 ms
89,088 KB
testcase_31 AC 77 ms
88,064 KB
testcase_32 AC 79 ms
88,448 KB
testcase_33 AC 78 ms
88,960 KB
testcase_34 AC 80 ms
91,136 KB
testcase_35 AC 81 ms
91,008 KB
testcase_36 AC 79 ms
91,904 KB
testcase_37 AC 80 ms
92,416 KB
testcase_38 AC 77 ms
87,168 KB
testcase_39 AC 75 ms
87,936 KB
testcase_40 AC 78 ms
89,088 KB
testcase_41 AC 80 ms
91,776 KB
testcase_42 AC 78 ms
89,472 KB
testcase_43 AC 79 ms
89,472 KB
testcase_44 AC 81 ms
92,160 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