結果
問題 | No.1198 お菓子配り-1 |
ユーザー | shimariasu |
提出日時 | 2020-08-29 09:57:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 371 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,632 KB |
最終ジャッジ日時 | 2024-11-14 05:16:39 |
合計ジャッジ時間 | 16,301 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,696 KB |
testcase_01 | AC | 31 ms
21,632 KB |
testcase_02 | AC | 31 ms
17,572 KB |
testcase_03 | AC | 34 ms
21,632 KB |
testcase_04 | AC | 32 ms
17,696 KB |
testcase_05 | AC | 30 ms
21,504 KB |
testcase_06 | AC | 31 ms
17,568 KB |
testcase_07 | AC | 30 ms
21,504 KB |
testcase_08 | AC | 32 ms
17,696 KB |
testcase_09 | AC | 35 ms
10,880 KB |
testcase_10 | AC | 32 ms
10,880 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
def divisor(n): d = [] i = 1 while i * i <= n: if n % i == 0: d.append(i) i += 1 return d n = int(input()) d = divisor(n) ans = -1 for small in d: big = n // small if (big - small) % 2 == 0: if 0 < big - (big - small) // 2: ans = 1 break print(ans)