結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー むつあるむつある
提出日時 2024-07-26 22:46:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 464 ms / 1,500 ms
コード長 472 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 135,756 KB
最終ジャッジ日時 2024-07-26 22:46:08
合計ジャッジ時間 7,260 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,208 KB
testcase_01 AC 464 ms
111,124 KB
testcase_02 AC 400 ms
135,756 KB
testcase_03 AC 394 ms
132,960 KB
testcase_04 AC 280 ms
99,252 KB
testcase_05 AC 278 ms
100,644 KB
testcase_06 AC 190 ms
94,340 KB
testcase_07 AC 177 ms
91,920 KB
testcase_08 AC 263 ms
98,652 KB
testcase_09 AC 118 ms
83,132 KB
testcase_10 AC 128 ms
84,308 KB
testcase_11 AC 117 ms
83,756 KB
testcase_12 AC 131 ms
83,824 KB
testcase_13 AC 123 ms
83,988 KB
testcase_14 AC 150 ms
87,624 KB
testcase_15 AC 153 ms
88,508 KB
testcase_16 AC 118 ms
81,768 KB
testcase_17 AC 142 ms
86,332 KB
testcase_18 AC 145 ms
88,048 KB
testcase_19 AC 73 ms
76,900 KB
testcase_20 AC 73 ms
76,288 KB
testcase_21 AC 67 ms
76,456 KB
testcase_22 AC 69 ms
76,344 KB
testcase_23 AC 74 ms
76,120 KB
testcase_24 AC 41 ms
59,264 KB
testcase_25 AC 43 ms
60,240 KB
testcase_26 AC 53 ms
66,440 KB
testcase_27 AC 53 ms
65,780 KB
testcase_28 AC 49 ms
62,388 KB
testcase_29 AC 48 ms
61,828 KB
testcase_30 AC 39 ms
54,072 KB
testcase_31 AC 37 ms
52,896 KB
testcase_32 AC 49 ms
62,412 KB
testcase_33 AC 50 ms
63,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 7)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

n=int(input())
a=list(map(int,input().split()))

def f(x):
  x=set(x)
  x=list(x)
  if len(x)<=2:
    return x
  x.sort()
  a=x[1]-x[0]
  b=x[2]-x[1]
  if a==b:
    return x[:2]
  if a<b:
    c=b%a
    return f([x[2]-a-c,x[2]-c,x[2]])
  else:
    c=a%b
    return f([x[1],x[1]+c,x[1]+c+b])
    
now=[]
for i in a:
  now.append(i)
  now=f(now)
  print(max(now)-min(now))
0