結果
問題 | No.2221 Set X |
ユーザー | titia |
提出日時 | 2023-02-19 00:51:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 265 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 85,120 KB |
最終ジャッジ日時 | 2024-07-20 06:45:10 |
合計ジャッジ時間 | 6,339 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,600 KB |
testcase_01 | AC | 38 ms
51,712 KB |
testcase_02 | AC | 37 ms
51,968 KB |
testcase_03 | AC | 40 ms
51,968 KB |
testcase_04 | AC | 36 ms
51,968 KB |
testcase_05 | AC | 37 ms
52,096 KB |
testcase_06 | AC | 41 ms
52,480 KB |
testcase_07 | AC | 42 ms
52,096 KB |
testcase_08 | WA | - |
testcase_09 | AC | 42 ms
57,472 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | OLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
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 calc(x): score=1 for i in range(1,N): if A[i]//x!=A[i-1]//x: score+=1 return score*(x+1) def calc2(x): score=1 now=A[0]//x OK=0 while True: print(OK) NG=len(A) while NG>OK+1: mid=(OK+NG)//2 if A[mid]//x==now: OK=mid else: NG=mid if NG==len(A): break else: score+=1 now=A[NG]//x OK=NG return score*(x+1) N=int(input()) A=list(map(int,input().split())) ANS=1<<100 IND=-1 for i in range(1,100): k=calc(i) if k<ANS: ANS=k IND=i for j in range(100,ANS+1): k=calc2(i) if k<ANS: ANS=k IND=i print(IND) print(ANS)