結果

問題 No.1256 連続整数列
ユーザー rei60rei60
提出日時 2020-10-25 17:33:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 59,592 KB
最終ジャッジ日時 2024-07-21 20:52:20
合計ジャッジ時間 2,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,884 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 41 ms
58,260 KB
testcase_07 AC 40 ms
58,912 KB
testcase_08 AC 40 ms
58,484 KB
testcase_09 AC 36 ms
53,580 KB
testcase_10 AC 41 ms
57,920 KB
testcase_11 AC 41 ms
57,664 KB
testcase_12 AC 40 ms
58,528 KB
testcase_13 AC 40 ms
58,452 KB
testcase_14 AC 42 ms
58,088 KB
testcase_15 AC 43 ms
57,208 KB
testcase_16 AC 41 ms
59,116 KB
testcase_17 AC 40 ms
57,260 KB
testcase_18 AC 41 ms
57,604 KB
testcase_19 AC 41 ms
57,812 KB
testcase_20 AC 41 ms
57,332 KB
testcase_21 AC 41 ms
57,944 KB
testcase_22 AC 42 ms
58,804 KB
testcase_23 AC 42 ms
58,812 KB
testcase_24 AC 42 ms
58,324 KB
testcase_25 AC 42 ms
59,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

A = int(input())

def make_div(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

div = make_div(A)[1::]


for d in div:
    temp = (2*A//d - d + 1)//2
    if temp-0.01 < (2*A/d - d + 1)/2 < temp+0.01 and temp > 0:
        print("YES")
        quit()
print("NO")
    
0