結果

問題 No.1198 お菓子配り-1
ユーザー c-yanc-yan
提出日時 2020-08-28 22:29:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 168 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 111,568 KB
最終ジャッジ日時 2024-11-14 01:18:53
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,772 KB
testcase_01 AC 39 ms
52,360 KB
testcase_02 AC 38 ms
53,240 KB
testcase_03 AC 35 ms
52,592 KB
testcase_04 AC 35 ms
52,868 KB
testcase_05 AC 36 ms
53,936 KB
testcase_06 AC 36 ms
52,084 KB
testcase_07 AC 38 ms
58,664 KB
testcase_08 AC 37 ms
52,276 KB
testcase_09 AC 36 ms
53,792 KB
testcase_10 AC 36 ms
52,444 KB
testcase_11 AC 37 ms
52,772 KB
testcase_12 TLE -
testcase_13 AC 36 ms
52,612 KB
testcase_14 AC 36 ms
52,724 KB
testcase_15 AC 37 ms
52,448 KB
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

for i in range(1, int(N ** 0.5) + 1):
    if N % i == 0:
        if (N // i - i) % 2 == 0:
            print(1)
            break
else:
    print(-1)
0