結果

問題 No.2221 Set X
ユーザー flygonflygon
提出日時 2023-02-18 16:13:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-07-20 02:05:40
合計ジャッジ時間 13,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,528 KB
testcase_01 AC 50 ms
54,272 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 42 ms
54,272 KB
testcase_07 AC 42 ms
54,784 KB
testcase_08 AC 67 ms
68,992 KB
testcase_09 AC 51 ms
61,056 KB
testcase_10 AC 71 ms
71,680 KB
testcase_11 AC 64 ms
67,072 KB
testcase_12 AC 69 ms
67,584 KB
testcase_13 AC 62 ms
66,560 KB
testcase_14 AC 72 ms
72,704 KB
testcase_15 AC 66 ms
68,480 KB
testcase_16 AC 246 ms
79,744 KB
testcase_17 AC 144 ms
77,056 KB
testcase_18 AC 272 ms
80,128 KB
testcase_19 AC 133 ms
77,056 KB
testcase_20 AC 197 ms
78,336 KB
testcase_21 AC 265 ms
82,176 KB
testcase_22 AC 317 ms
85,120 KB
testcase_23 AC 91 ms
77,056 KB
testcase_24 AC 329 ms
82,048 KB
testcase_25 AC 187 ms
79,104 KB
testcase_26 AC 469 ms
89,472 KB
testcase_27 AC 542 ms
90,496 KB
testcase_28 AC 533 ms
90,240 KB
testcase_29 AC 548 ms
90,368 KB
testcase_30 AC 516 ms
90,240 KB
testcase_31 AC 585 ms
90,368 KB
testcase_32 AC 518 ms
90,240 KB
testcase_33 AC 483 ms
90,624 KB
testcase_34 AC 487 ms
90,368 KB
testcase_35 AC 501 ms
90,496 KB
testcase_36 AC 537 ms
90,752 KB
testcase_37 AC 567 ms
90,496 KB
testcase_38 AC 530 ms
90,112 KB
testcase_39 AC 462 ms
88,448 KB
testcase_40 AC 489 ms
88,576 KB
testcase_41 AC 536 ms
90,368 KB
testcase_42 AC 508 ms
90,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

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

ans = [2*n, 1]
for i in range(2, 2*n+1):
  j = 0
  cnt = 0
  while j < n:
    now = a[j]//i
    t = bisect_left(a, i*(now+1))
    j = t
    cnt += 1
    if (i+1) * cnt >= 2*n:
      break
  ans = min(ans, [cnt * (i+1), i])

print(ans[1])
print(ans[0])

0