結果

問題 No.638 Sum of "not power of 2"
ユーザー akitsugu777akitsugu777
提出日時 2018-11-14 13:27:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 246 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 103,552 KB
最終ジャッジ日時 2024-06-06 19:54:51
合計ジャッジ時間 3,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,128 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
nl = [2**i for i in range(int(n**0.5)+1)]

l = []
for i in range(1, n):
    x = i
    y = n - i
    if not x in nl and not y in nl:
        l.append(x)

l = sorted(l)

if len(l) == 0:
    print(-1)
else:
    print(l[0], n - l[0])
0