結果

問題 No.2221 Set X
ユーザー ShirotsumeShirotsume
提出日時 2023-02-14 22:19:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 91,924 KB
最終ジャッジ日時 2024-07-17 10:10:40
合計ジャッジ時間 12,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,444 KB
testcase_01 AC 46 ms
55,808 KB
testcase_02 AC 47 ms
56,444 KB
testcase_03 AC 44 ms
55,640 KB
testcase_04 AC 45 ms
56,728 KB
testcase_05 AC 46 ms
56,296 KB
testcase_06 AC 46 ms
55,592 KB
testcase_07 AC 46 ms
56,300 KB
testcase_08 AC 61 ms
68,060 KB
testcase_09 AC 49 ms
62,484 KB
testcase_10 AC 62 ms
70,436 KB
testcase_11 AC 57 ms
66,048 KB
testcase_12 AC 58 ms
66,932 KB
testcase_13 AC 59 ms
66,928 KB
testcase_14 AC 67 ms
73,344 KB
testcase_15 AC 61 ms
68,040 KB
testcase_16 AC 262 ms
80,736 KB
testcase_17 AC 152 ms
77,824 KB
testcase_18 AC 291 ms
81,264 KB
testcase_19 AC 139 ms
77,468 KB
testcase_20 AC 199 ms
78,892 KB
testcase_21 AC 291 ms
82,848 KB
testcase_22 AC 371 ms
86,264 KB
testcase_23 AC 95 ms
77,168 KB
testcase_24 AC 351 ms
83,116 KB
testcase_25 AC 201 ms
79,996 KB
testcase_26 AC 449 ms
90,744 KB
testcase_27 AC 478 ms
91,572 KB
testcase_28 AC 478 ms
91,780 KB
testcase_29 AC 413 ms
91,548 KB
testcase_30 AC 425 ms
91,740 KB
testcase_31 AC 472 ms
91,584 KB
testcase_32 AC 382 ms
91,668 KB
testcase_33 AC 446 ms
91,888 KB
testcase_34 AC 418 ms
91,552 KB
testcase_35 AC 397 ms
91,652 KB
testcase_36 AC 415 ms
91,648 KB
testcase_37 AC 423 ms
91,924 KB
testcase_38 AC 411 ms
91,720 KB
testcase_39 AC 439 ms
88,756 KB
testcase_40 AC 458 ms
90,104 KB
testcase_41 AC 444 ms
91,804 KB
testcase_42 AC 440 ms
91,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
import time
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import random
import bisect
n = ii()

a = li()

def check(x, k):
    now = 0
    cnt = 0
    while now < n:
        cnt += 1
        if cnt > k:
            return cnt
        now = bisect.bisect_left(a, x * (a[now] // x + 1))
    return cnt

ans = 2 * n
x = 1

for i in range(2, 2 * n):
    k = ans // (i + 1)
    p = check(i, k)
    if ans > p * (i + 1):
        ans = p * (i + 1)
        x = i

print(x)
print(ans)

0