結果

問題 No.1884 Sequence
ユーザー hamotaro1329hamotaro1329
提出日時 2022-04-09 16:25:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,135 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-05-07 03:15:55
合計ジャッジ時間 7,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 RE -
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 WA -
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 132 ms
105,564 KB
testcase_11 AC 130 ms
105,312 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 73 ms
88,576 KB
testcase_15 AC 115 ms
108,928 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 89 ms
108,928 KB
testcase_19 AC 80 ms
100,864 KB
testcase_20 AC 106 ms
105,600 KB
testcase_21 AC 98 ms
101,376 KB
testcase_22 AC 109 ms
106,368 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 132 ms
104,480 KB
testcase_26 AC 132 ms
105,496 KB
testcase_27 RE -
testcase_28 AC 69 ms
95,360 KB
testcase_29 WA -
testcase_30 AC 87 ms
96,384 KB
testcase_31 AC 97 ms
98,560 KB
testcase_32 AC 132 ms
104,872 KB
testcase_33 AC 99 ms
103,852 KB
testcase_34 AC 97 ms
104,108 KB
testcase_35 AC 77 ms
98,688 KB
testcase_36 AC 103 ms
101,888 KB
testcase_37 AC 96 ms
103,972 KB
testcase_38 AC 96 ms
102,916 KB
testcase_39 AC 86 ms
102,016 KB
testcase_40 AC 102 ms
102,528 KB
testcase_41 AC 129 ms
100,468 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_ok(x):
    # 条件を満たすかどうか?問題ごとに定義
    count = 0
    now = B[0]
    r = 0
    for i in range(1,len(B)):
        while True:
            r += 1
            if now > B[i]:
                return False
            if now+x == B[i]:
                now = B[i]
                break
            else:
                count += 1
                now += x
            if count > M:
                return False
    
    return True

    



def meguru_bisect(ng, ok):
    '''
    初期値のng,okを受け取り,is_okを満たす最小(最大)のokを返す
    まずis_okを定義すべし
    ng ok は  とり得る最小の値-1 とり得る最大の値+1
    最大最小が逆の場合はよしなにひっくり返す
    '''
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            print('Yes')
            exit()
        else:
            if mid == 0:
                print('No')
                exit()
            ok = mid
    return ok

N = int(input())
A = list(map(int,input().split()))
M = A.count(0)
A.sort()
B = A[M:]
ans = meguru_bisect(-1,10**18)
0