結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー 👑 p-adicp-adic
提出日時 2024-07-26 23:38:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 1,500 ms
コード長 277 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 135,204 KB
最終ジャッジ日時 2024-07-26 23:38:50
合計ジャッジ時間 6,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 210 ms
111,464 KB
testcase_02 AC 227 ms
135,204 KB
testcase_03 AC 220 ms
133,608 KB
testcase_04 AC 168 ms
99,072 KB
testcase_05 AC 172 ms
100,688 KB
testcase_06 AC 149 ms
94,592 KB
testcase_07 AC 130 ms
93,056 KB
testcase_08 AC 159 ms
98,320 KB
testcase_09 AC 106 ms
82,768 KB
testcase_10 AC 152 ms
83,840 KB
testcase_11 AC 99 ms
83,584 KB
testcase_12 AC 104 ms
83,420 KB
testcase_13 AC 107 ms
83,684 KB
testcase_14 AC 117 ms
87,424 KB
testcase_15 AC 110 ms
87,832 KB
testcase_16 AC 99 ms
81,280 KB
testcase_17 AC 118 ms
86,304 KB
testcase_18 AC 121 ms
87,296 KB
testcase_19 AC 80 ms
74,752 KB
testcase_20 AC 87 ms
76,272 KB
testcase_21 AC 70 ms
68,864 KB
testcase_22 AC 76 ms
73,216 KB
testcase_23 AC 70 ms
70,144 KB
testcase_24 AC 43 ms
52,992 KB
testcase_25 AC 44 ms
53,248 KB
testcase_26 AC 52 ms
60,032 KB
testcase_27 AC 54 ms
59,776 KB
testcase_28 AC 49 ms
59,264 KB
testcase_29 AC 48 ms
59,008 KB
testcase_30 AC 44 ms
52,992 KB
testcase_31 AC 42 ms
51,840 KB
testcase_32 AC 46 ms
54,400 KB
testcase_33 AC 52 ms
59,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

J=lambda:map(int,input().split())
N,*_=J()
A=list(J())
l=r=A[0]
for i in range(N):
	if A[i]<l:A[i],l=l,A[i]
	if A[i]>r:A[i],r=r,A[i]
	while not A[i]in[l,r]:
		if A[i]*2<l+r:d=(r-A[i])//(A[i]-l)*(A[i]-l);A[i]+=d;l+=d
		else:d=(A[i]-l)//(r-A[i])*(r-A[i]);r-=d;A[i]-=d
	print(r-l)
0