結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,488 KB
testcase_01 AC 48 ms
58,112 KB
testcase_02 AC 47 ms
58,112 KB
testcase_03 AC 46 ms
57,984 KB
testcase_04 AC 46 ms
58,496 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 46 ms
58,240 KB
testcase_07 AC 46 ms
58,112 KB
testcase_08 AC 55 ms
60,160 KB
testcase_09 AC 48 ms
57,984 KB
testcase_10 AC 54 ms
58,880 KB
testcase_11 AC 51 ms
58,624 KB
testcase_12 AC 53 ms
59,904 KB
testcase_13 AC 52 ms
58,880 KB
testcase_14 AC 60 ms
58,624 KB
testcase_15 AC 55 ms
58,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 744 ms
70,912 KB
testcase_22 AC 1,027 ms
76,032 KB
testcase_23 AC 102 ms
60,544 KB
testcase_24 AC 682 ms
70,784 KB
testcase_25 AC 436 ms
66,304 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,988 ms
83,840 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a):
  ans=10**9
  ans2=-1
  kouho=set()
  n=len(a)
  for i in range(1,800):
    kouho.add(i)
    if n>=i:
      kouho.add(n//i)
      kouho.add((n+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