結果
問題 | No.2221 Set X |
ユーザー | とりゐ |
提出日時 | 2023-02-17 22:01:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 547 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 85,120 KB |
最終ジャッジ日時 | 2024-07-19 13:14:08 |
合計ジャッジ時間 | 22,963 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
58,368 KB |
testcase_01 | AC | 41 ms
57,856 KB |
testcase_02 | AC | 44 ms
58,496 KB |
testcase_03 | AC | 36 ms
51,968 KB |
testcase_04 | AC | 41 ms
57,600 KB |
testcase_05 | AC | 36 ms
51,840 KB |
testcase_06 | AC | 45 ms
58,112 KB |
testcase_07 | AC | 44 ms
58,112 KB |
testcase_08 | WA | - |
testcase_09 | AC | 42 ms
58,368 KB |
testcase_10 | WA | - |
testcase_11 | AC | 44 ms
58,752 KB |
testcase_12 | AC | 46 ms
59,776 KB |
testcase_13 | AC | 47 ms
59,520 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 | 447 ms
71,680 KB |
testcase_22 | AC | 518 ms
76,416 KB |
testcase_23 | AC | 76 ms
60,928 KB |
testcase_24 | AC | 418 ms
71,424 KB |
testcase_25 | AC | 279 ms
67,200 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 1,075 ms
84,352 KB |
testcase_33 | AC | 958 ms
83,968 KB |
testcase_34 | AC | 951 ms
84,352 KB |
testcase_35 | AC | 1,072 ms
84,352 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
def divisors(n): lower,upper=[],[] i=1 while i*i<=n: if n%i==0: lower.append(i) if i!=n//i: upper.append(n//i) i+=1 return lower+upper[::-1] def solve(a): ans=10**9 ans2=-1 kouho=list(range(1,500))+divisors(a[-1]) kouho.sort() for x in kouho: 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())) ans,ans2=solve(a) print(ans2) print(ans)