結果

問題 No.2221 Set X
ユーザー とりゐとりゐ
提出日時 2023-02-17 22:33:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 86,760 KB
実行使用メモリ 91,240 KB
最終ジャッジ日時 2023-09-26 19:51:32
合計ジャッジ時間 13,579 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,364 KB
testcase_01 AC 70 ms
71,288 KB
testcase_02 AC 69 ms
71,420 KB
testcase_03 AC 71 ms
71,232 KB
testcase_04 AC 69 ms
71,164 KB
testcase_05 AC 69 ms
71,232 KB
testcase_06 AC 68 ms
71,400 KB
testcase_07 AC 68 ms
71,272 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 75 ms
75,248 KB
testcase_14 AC 74 ms
75,256 KB
testcase_15 AC 75 ms
75,208 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 128 ms
82,088 KB
testcase_22 AC 185 ms
85,564 KB
testcase_23 AC 77 ms
75,924 KB
testcase_24 AC 148 ms
81,884 KB
testcase_25 AC 138 ms
78,604 KB
testcase_26 AC 768 ms
89,948 KB
testcase_27 AC 766 ms
90,836 KB
testcase_28 WA -
testcase_29 AC 721 ms
91,172 KB
testcase_30 AC 685 ms
90,800 KB
testcase_31 AC 763 ms
90,900 KB
testcase_32 AC 595 ms
90,992 KB
testcase_33 AC 698 ms
91,008 KB
testcase_34 AC 329 ms
90,820 KB
testcase_35 AC 736 ms
90,828 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n):
  lower,upper=[],[]
  i=1
  while i*i<=n:
    if n%i==0:
      lower.append(i)
      if i!=n//i:
        upper.append(n//i)
    i+=1
  return lower+upper[::-1]

def solve(a):
  ans=10**9
  ans2=-1
  kouho=set()
  for d in divisors(len(a)):
    for i in range(-5,6):
      if d+i>0:
        kouho.add(d+i)
  for i in range(10):
    kouho.add(2*len(a)+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()))
ans,ans2=solve(a)
print(ans2)
print(ans)
0