結果

問題 No.1256 連続整数列
ユーザー rlangevinrlangevin
提出日時 2024-08-02 08:59:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 75,304 KB
最終ジャッジ日時 2024-08-02 08:59:56
合計ジャッジ時間 2,701 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,232 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 38 ms
53,692 KB
testcase_04 AC 39 ms
52,192 KB
testcase_05 WA -
testcase_06 AC 35 ms
53,244 KB
testcase_07 AC 37 ms
52,728 KB
testcase_08 AC 38 ms
52,472 KB
testcase_09 AC 36 ms
52,924 KB
testcase_10 AC 36 ms
52,000 KB
testcase_11 AC 36 ms
53,000 KB
testcase_12 AC 36 ms
52,280 KB
testcase_13 AC 40 ms
59,068 KB
testcase_14 AC 36 ms
52,524 KB
testcase_15 AC 35 ms
52,280 KB
testcase_16 AC 41 ms
59,420 KB
testcase_17 AC 36 ms
52,056 KB
testcase_18 AC 42 ms
59,792 KB
testcase_19 AC 37 ms
53,356 KB
testcase_20 AC 37 ms
53,008 KB
testcase_21 AC 42 ms
59,924 KB
testcase_22 AC 37 ms
52,196 KB
testcase_23 AC 37 ms
52,332 KB
testcase_24 AC 37 ms
53,280 KB
testcase_25 AC 37 ms
52,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def BinarySearch(yes, no, A, n):
    while abs(yes - no) != 1:
        mid = (yes + no)//2
        if A >= n * mid + n * (n - 1) // 2:
            yes = mid
        else:
            no = mid
    return n * yes + n * (n - 1) // 2

A = int(input())
n = 3
while n * (n - 1) // 2 <= A:
    B = BinarySearch(-2, 10 ** 9 + 5, A, n)
    if A == B:
        print("YES")
        exit()
    n += 1
print("NO")
0