結果

問題 No.1198 お菓子配り-1
ユーザー uni_pythonuni_python
提出日時 2020-08-28 21:32:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 774 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 116,712 KB
最終ジャッジ日時 2024-11-13 23:51:24
合計ジャッジ時間 16,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,224 KB
testcase_01 AC 37 ms
112,116 KB
testcase_02 AC 36 ms
59,940 KB
testcase_03 AC 37 ms
111,724 KB
testcase_04 AC 41 ms
64,892 KB
testcase_05 AC 38 ms
111,400 KB
testcase_06 AC 41 ms
65,864 KB
testcase_07 AC 41 ms
116,712 KB
testcase_08 AC 41 ms
65,080 KB
testcase_09 AC 40 ms
58,636 KB
testcase_10 AC 40 ms
57,860 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 38 ms
52,264 KB
testcase_17 AC 37 ms
112,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    #約数列挙
    def make_divisors(n):
        divisors = []
        for i in range(1, int(n**0.5)+1):
            if n % i == 0:
                divisors.append(i)
                if i != n // i:
                    divisors.append(n//i)

        divisors.sort()
        return divisors
    
    d=make_divisors(N)
    flag=0
    for i in range(len(d)):
        a=d[i]
        b=d[-1-i]
        if b<=a:
            break
        if (b-a)%2==0:
            flag=1
            break
        
    if flag:
        print(1)
    else:
        print(-1)

        
    


main()
0