結果

問題 No.1150 シュークリームゲーム(Easy)
ユーザー nikkukunnikkukun
提出日時 2020-08-12 23:19:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 88,240 KB
最終ジャッジ日時 2024-10-09 18:39:18
合計ジャッジ時間 3,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,396 KB
testcase_01 AC 37 ms
52,788 KB
testcase_02 AC 37 ms
53,544 KB
testcase_03 AC 39 ms
52,376 KB
testcase_04 AC 39 ms
52,872 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,672 KB
testcase_07 WA -
testcase_08 AC 37 ms
53,660 KB
testcase_09 AC 37 ms
52,640 KB
testcase_10 AC 37 ms
53,264 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,824 KB
testcase_13 WA -
testcase_14 AC 37 ms
53,348 KB
testcase_15 WA -
testcase_16 AC 38 ms
54,220 KB
testcase_17 AC 38 ms
52,812 KB
testcase_18 AC 37 ms
53,352 KB
testcase_19 AC 38 ms
53,236 KB
testcase_20 WA -
testcase_21 AC 38 ms
54,012 KB
testcase_22 AC 63 ms
82,308 KB
testcase_23 AC 62 ms
82,136 KB
testcase_24 AC 59 ms
80,716 KB
testcase_25 AC 61 ms
83,136 KB
testcase_26 AC 64 ms
85,356 KB
testcase_27 WA -
testcase_28 AC 66 ms
88,240 KB
testcase_29 AC 62 ms
81,996 KB
testcase_30 AC 62 ms
83,040 KB
testcase_31 AC 61 ms
84,008 KB
testcase_32 AC 62 ms
83,076 KB
testcase_33 WA -
testcase_34 AC 63 ms
85,536 KB
testcase_35 WA -
testcase_36 AC 65 ms
86,760 KB
testcase_37 WA -
testcase_38 AC 61 ms
82,388 KB
testcase_39 WA -
testcase_40 AC 64 ms
85,108 KB
testcase_41 WA -
testcase_42 AC 61 ms
82,996 KB
testcase_43 WA -
testcase_44 AC 67 ms
86,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

if __name__ == '__main__':
	n = int(input())
	s, t = map(int, input().split())
	s -= 1
	t -= 1

	a = list(map(int, input().split()))
	a = a[s:] + a[:s]
	s, t = 0, (t - s) % n

	x = t - 1
	y = n - x - 2

	ans = a[s] - a[t]
	if x % 2 == 0 and y % 2 == 0:
		ans += sum(a[1 : 1 + x // 2]) + sum(a[n - y // 2 : n])
		ans -= sum(a[1 + x // 2 : t]) + sum(a[n - y : n - y // 2])
	elif x % 2 == 0 and y % 2 == 1:
		ans += sum(a[1 : 1 + x // 2]) + sum(a[n - y // 2 : n])
		ans -= sum(a[1 + x // 2 : t]) + sum(a[n - y : n - y // 2])
	elif x % 2 == 1 and y % 2 == 0:
		ans += sum(a[1 : 1 + x // 2 + 1]) + sum(a[n - y // 2 : n])
		ans -= sum(a[1 + x // 2 + 1: t]) + sum(a[n - y : n - y // 2])
	else:
		ans1, ans2 = ans, ans
		ans1 += sum(a[1 : 1 + x // 2 + 1]) + sum(a[n - y // 2 : n])
		ans1 -= sum(a[1 + x // 2 + 1: t]) + sum(a[n - y : n - y // 2])
		ans2 += sum(a[1 : 1 + x // 2]) + sum(a[n - y // 2 - 1 : n])
		ans2 -= sum(a[1 + x // 2: t]) + sum(a[n - y : n - y // 2 - 1])
		ans = max(ans1, ans2)
	
	print(ans)

0