結果
問題 | No.2221 Set X |
ユーザー | とりゐ |
提出日時 | 2023-02-17 22:48:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 477 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 84,736 KB |
最終ジャッジ日時 | 2024-07-19 14:01:33 |
合計ジャッジ時間 | 10,922 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
65,792 KB |
testcase_01 | AC | 45 ms
60,416 KB |
testcase_02 | AC | 46 ms
60,928 KB |
testcase_03 | AC | 44 ms
59,136 KB |
testcase_04 | AC | 45 ms
60,160 KB |
testcase_05 | AC | 45 ms
59,136 KB |
testcase_06 | AC | 47 ms
60,928 KB |
testcase_07 | AC | 46 ms
60,160 KB |
testcase_08 | WA | - |
testcase_09 | AC | 47 ms
60,896 KB |
testcase_10 | WA | - |
testcase_11 | AC | 51 ms
61,568 KB |
testcase_12 | AC | 55 ms
61,696 KB |
testcase_13 | AC | 55 ms
61,696 KB |
testcase_14 | AC | 55 ms
61,568 KB |
testcase_15 | AC | 51 ms
61,184 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 835 ms
73,344 KB |
testcase_22 | AC | 1,285 ms
77,952 KB |
testcase_23 | AC | 85 ms
62,208 KB |
testcase_24 | AC | 746 ms
72,576 KB |
testcase_25 | AC | 418 ms
68,864 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
ソースコード
def solve(a): ans=10**9 ans2=-1 kouho=set() n=len(a) for i in range(1,500): kouho.add(i) for j in range(-2,3): if n//i+j>0: kouho.add(n//i+j) kouho=sorted(list(kouho)) 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())) ans1,ans2=solve(a) print(ans2) print(ans1)