結果

問題 No.638 Sum of "not power of 2"
ユーザー lloyz
提出日時 2022-08-08 22:33:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-19 06:51:20
合計ジャッジ時間 1,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

seen = set()
for i in range(61):
    seen.add(pow(2, i))

n = int(input())
for a in range(1, n // 2 + 1):
    b = n - a
    if a in seen or b in seen:
        continue
    print(a, b)
    exit()
print(-1)
0