結果

問題 No.2221 Set X
ユーザー ShirotsumeShirotsume
提出日時 2023-02-14 22:17:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 92,112 KB
最終ジャッジ日時 2024-07-17 10:09:10
合計ジャッジ時間 13,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,708 KB
testcase_01 AC 44 ms
56,080 KB
testcase_02 AC 44 ms
55,508 KB
testcase_03 AC 44 ms
55,552 KB
testcase_04 AC 48 ms
56,648 KB
testcase_05 AC 43 ms
55,628 KB
testcase_06 AC 43 ms
55,544 KB
testcase_07 AC 44 ms
56,144 KB
testcase_08 AC 60 ms
68,684 KB
testcase_09 AC 48 ms
61,588 KB
testcase_10 AC 62 ms
69,840 KB
testcase_11 AC 57 ms
66,300 KB
testcase_12 AC 57 ms
66,976 KB
testcase_13 AC 56 ms
66,308 KB
testcase_14 AC 64 ms
73,592 KB
testcase_15 AC 59 ms
68,520 KB
testcase_16 AC 252 ms
80,760 KB
testcase_17 AC 144 ms
77,764 KB
testcase_18 AC 278 ms
81,508 KB
testcase_19 AC 136 ms
77,508 KB
testcase_20 AC 195 ms
78,716 KB
testcase_21 AC 281 ms
82,836 KB
testcase_22 AC 359 ms
86,348 KB
testcase_23 AC 89 ms
77,292 KB
testcase_24 AC 342 ms
82,776 KB
testcase_25 AC 189 ms
80,244 KB
testcase_26 AC 436 ms
90,524 KB
testcase_27 AC 463 ms
91,924 KB
testcase_28 AC 468 ms
91,868 KB
testcase_29 WA -
testcase_30 AC 418 ms
91,588 KB
testcase_31 AC 460 ms
91,820 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 422 ms
88,868 KB
testcase_40 AC 443 ms
89,928 KB
testcase_41 AC 438 ms
91,404 KB
testcase_42 AC 431 ms
91,220 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 False
        now = bisect.bisect_left(a, x * (a[now] // x + 1))
    return True

ans = 2 * n
x = 1

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

0