結果

問題 No.2221 Set X
ユーザー とりゐとりゐ
提出日時 2023-02-17 23:18:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-07-19 14:29:48
合計ジャッジ時間 39,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,368 KB
testcase_01 AC 46 ms
57,472 KB
testcase_02 AC 47 ms
58,368 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 46 ms
58,112 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 46 ms
58,044 KB
testcase_07 AC 45 ms
57,980 KB
testcase_08 WA -
testcase_09 AC 46 ms
58,108 KB
testcase_10 WA -
testcase_11 AC 49 ms
58,496 KB
testcase_12 WA -
testcase_13 AC 49 ms
59,008 KB
testcase_14 AC 53 ms
59,008 KB
testcase_15 AC 51 ms
58,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 588 ms
71,540 KB
testcase_22 AC 867 ms
76,032 KB
testcase_23 AC 77 ms
59,776 KB
testcase_24 AC 531 ms
70,912 KB
testcase_25 AC 316 ms
66,944 KB
testcase_26 AC 1,897 ms
82,176 KB
testcase_27 AC 1,909 ms
85,760 KB
testcase_28 WA -
testcase_29 AC 1,868 ms
84,096 KB
testcase_30 AC 1,773 ms
84,220 KB
testcase_31 AC 1,869 ms
85,632 KB
testcase_32 AC 1,922 ms
84,480 KB
testcase_33 AC 1,708 ms
84,352 KB
testcase_34 AC 1,788 ms
83,840 KB
testcase_35 AC 1,789 ms
83,712 KB
testcase_36 AC 1,908 ms
84,992 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 TLE -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a):
  ans=10**9
  ans2=-1
  kouho=set()
  n=len(a)
  d=a[-1]-a[0]
  for i in range(1,400):
    kouho.add(i)
    if n>=i:
      kouho.add(n//i)
      kouho.add((n+i-1)//i)
    if d>=i and d<=i*2*10**5:
      kouho.add(d//i)
      kouho.add((d+i-1)//i)
  kouho=sorted(list(kouho))
  for x in kouho:
    last=-1
    cnt=0
    for i in a:
      if i//x!=last:
        cnt+=1
        last=i//x
    if ans>cnt*(x+1):
      ans=cnt*(x+1)
      ans2=x
  return ans,ans2

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

print(ans2)
print(ans1)
0