結果

問題 No.2221 Set X
ユーザー とりゐとりゐ
提出日時 2023-02-17 21:53:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-07-19 13:07:32
合計ジャッジ時間 22,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,240 KB
testcase_01 AC 42 ms
57,728 KB
testcase_02 AC 41 ms
58,240 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 39 ms
57,856 KB
testcase_05 AC 35 ms
51,584 KB
testcase_06 AC 45 ms
57,984 KB
testcase_07 AC 46 ms
57,344 KB
testcase_08 WA -
testcase_09 AC 45 ms
57,728 KB
testcase_10 WA -
testcase_11 AC 42 ms
58,624 KB
testcase_12 AC 42 ms
59,136 KB
testcase_13 AC 49 ms
58,368 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 411 ms
70,656 KB
testcase_22 AC 535 ms
75,264 KB
testcase_23 AC 76 ms
59,648 KB
testcase_24 AC 392 ms
70,272 KB
testcase_25 AC 273 ms
65,920 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,057 ms
83,328 KB
testcase_33 AC 942 ms
83,328 KB
testcase_34 AC 1,287 ms
83,328 KB
testcase_35 AC 1,009 ms
83,712 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
  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
  return ans,ans2

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

print(ans2)
print(ans1)
0