結果

問題 No.2221 Set X
ユーザー とりゐとりゐ
提出日時 2023-02-17 23:27:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 91,364 KB
最終ジャッジ日時 2024-07-19 14:40:25
合計ジャッジ時間 25,450 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
59,392 KB
testcase_01 AC 49 ms
59,520 KB
testcase_02 AC 51 ms
60,032 KB
testcase_03 AC 47 ms
57,728 KB
testcase_04 AC 49 ms
59,008 KB
testcase_05 AC 46 ms
58,368 KB
testcase_06 AC 51 ms
59,904 KB
testcase_07 AC 52 ms
59,520 KB
testcase_08 WA -
testcase_09 AC 50 ms
59,392 KB
testcase_10 WA -
testcase_11 AC 54 ms
59,520 KB
testcase_12 AC 56 ms
60,416 KB
testcase_13 AC 56 ms
60,672 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 888 ms
81,920 KB
testcase_22 AC 1,174 ms
84,864 KB
testcase_23 AC 141 ms
70,016 KB
testcase_24 AC 834 ms
81,024 KB
testcase_25 AC 558 ms
78,464 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 995 ms
89,984 KB
testcase_33 AC 1,424 ms
90,412 KB
testcase_34 AC 1,318 ms
90,592 KB
testcase_35 AC 1,157 ms
90,752 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans=10**9
ans2=-1
d=a[-1]-a[0]
for x in range(1,500):
  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

def calc_big(x):
  last=-1
  now=0
  for i in a:
    if i//x!=last:
      now+=x+1
      if now>=ans:
        return 10**9
  return now

for x in range(500,2*10**5+10):
  res=calc_big(x)
  if res<ans:
    ans=res
    ans2=x

print(ans2)
print(ans)
0