結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,112 KB
testcase_01 AC 45 ms
58,368 KB
testcase_02 AC 45 ms
57,728 KB
testcase_03 AC 45 ms
57,600 KB
testcase_04 AC 43 ms
58,240 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 40 ms
57,984 KB
testcase_07 AC 42 ms
58,112 KB
testcase_08 AC 53 ms
60,672 KB
testcase_09 AC 42 ms
57,984 KB
testcase_10 AC 52 ms
58,880 KB
testcase_11 AC 48 ms
59,008 KB
testcase_12 AC 49 ms
60,288 KB
testcase_13 AC 48 ms
58,624 KB
testcase_14 AC 57 ms
59,008 KB
testcase_15 AC 54 ms
59,264 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 640 ms
71,680 KB
testcase_22 AC 869 ms
75,520 KB
testcase_23 AC 92 ms
60,544 KB
testcase_24 AC 597 ms
71,296 KB
testcase_25 AC 395 ms
66,560 KB
testcase_26 AC 1,851 ms
82,176 KB
testcase_27 AC 1,873 ms
85,248 KB
testcase_28 WA -
testcase_29 AC 1,896 ms
84,224 KB
testcase_30 AC 1,794 ms
83,712 KB
testcase_31 AC 1,859 ms
85,120 KB
testcase_32 AC 1,868 ms
84,096 KB
testcase_33 AC 1,651 ms
83,712 KB
testcase_34 AC 1,719 ms
84,096 KB
testcase_35 AC 1,800 ms
84,096 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

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=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