結果

問題 No.1198 お菓子配り-1
ユーザー uni_pythonuni_python
提出日時 2020-08-28 21:25:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 355,028 KB
最終ジャッジ日時 2024-11-13 23:47:55
合計ジャッジ時間 15,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
253,968 KB
testcase_01 AC 567 ms
253,572 KB
testcase_02 AC 609 ms
253,880 KB
testcase_03 AC 567 ms
253,872 KB
testcase_04 AC 570 ms
253,764 KB
testcase_05 AC 582 ms
253,880 KB
testcase_06 AC 580 ms
253,700 KB
testcase_07 AC 582 ms
253,840 KB
testcase_08 AC 576 ms
254,196 KB
testcase_09 AC 572 ms
253,824 KB
testcase_10 AC 568 ms
253,844 KB
testcase_11 WA -
testcase_12 AC 1,344 ms
354,728 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 579 ms
253,772 KB
testcase_17 AC 571 ms
253,976 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**6
    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