結果

問題 No.2221 Set X
ユーザー とりゐとりゐ
提出日時 2023-02-17 23:37:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 91,116 KB
最終ジャッジ日時 2024-07-19 14:48:33
合計ジャッジ時間 12,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 46 ms
51,968 KB
testcase_05 AC 46 ms
52,224 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 57 ms
65,664 KB
testcase_09 AC 43 ms
57,600 KB
testcase_10 AC 58 ms
66,984 KB
testcase_11 AC 51 ms
62,592 KB
testcase_12 AC 54 ms
64,640 KB
testcase_13 AC 57 ms
65,280 KB
testcase_14 AC 60 ms
68,864 KB
testcase_15 AC 57 ms
65,664 KB
testcase_16 AC 238 ms
79,232 KB
testcase_17 AC 128 ms
76,288 KB
testcase_18 AC 266 ms
79,872 KB
testcase_19 AC 119 ms
76,288 KB
testcase_20 AC 177 ms
77,312 KB
testcase_21 AC 279 ms
82,432 KB
testcase_22 AC 364 ms
85,376 KB
testcase_23 AC 85 ms
76,024 KB
testcase_24 AC 346 ms
81,792 KB
testcase_25 AC 192 ms
78,720 KB
testcase_26 AC 443 ms
89,796 KB
testcase_27 AC 470 ms
90,752 KB
testcase_28 AC 473 ms
90,624 KB
testcase_29 AC 405 ms
91,008 KB
testcase_30 AC 416 ms
90,752 KB
testcase_31 AC 466 ms
90,624 KB
testcase_32 AC 384 ms
90,752 KB
testcase_33 AC 423 ms
90,852 KB
testcase_34 AC 404 ms
90,880 KB
testcase_35 AC 385 ms
90,592 KB
testcase_36 AC 414 ms
90,584 KB
testcase_37 AC 420 ms
90,624 KB
testcase_38 AC 409 ms
91,116 KB
testcase_39 AC 428 ms
87,808 KB
testcase_40 AC 442 ms
88,960 KB
testcase_41 AC 435 ms
90,368 KB
testcase_42 AC 433 ms
90,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

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

ans=10**9
ans2=-1

import bisect

for x in range(1,2*n+1):
  now=0
  i=0
  while i!=n:
    now+=x+1
    if now>=ans:
      break
    i=bisect.bisect_left(a,(a[i]//x+1)*x)
  if now<ans:
    ans=now
    ans2=x

print(ans2)
print(ans)
0