結果

問題 No.1198 お菓子配り-1
ユーザー uni_pythonuni_python
提出日時 2020-08-28 21:23:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 132,360 KB
最終ジャッジ日時 2024-11-13 23:46:48
合計ジャッジ時間 2,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
95,348 KB
testcase_01 AC 89 ms
96,152 KB
testcase_02 AC 90 ms
95,340 KB
testcase_03 AC 90 ms
96,520 KB
testcase_04 AC 87 ms
95,548 KB
testcase_05 AC 92 ms
95,560 KB
testcase_06 AC 88 ms
95,756 KB
testcase_07 AC 86 ms
95,148 KB
testcase_08 AC 87 ms
95,992 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 143 ms
132,144 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 88 ms
95,604 KB
testcase_17 AC 87 ms
95,464 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()
    from collections import defaultdict
    dd = defaultdict(int)
    
    M=10**5+2
    for i in range(1,M):
        dd[i*i]+=1
        
    flag=0
    for i in range(1,M):
        aa=i*i
        bb=aa-N
        if dd[bb]:
            flag=1
            
    if flag:
        print(1)
    else:
        print(-1)
        
    


main()
0