結果

問題 No.638 Sum of "not power of 2"
ユーザー RyutoRyuto
提出日時 2018-01-30 15:00:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 412,048 KB
最終ジャッジ日時 2024-12-30 02:55:17
合計ジャッジ時間 9,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,088 KB
testcase_01 AC 42 ms
412,048 KB
testcase_02 AC 44 ms
57,216 KB
testcase_03 AC 44 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 44 ms
403,856 KB
testcase_06 AC 45 ms
57,088 KB
testcase_07 AC 47 ms
52,352 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 45 ms
52,096 KB
testcase_13 AC 44 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
alist = [x for x in range(1, n) if math.frexp(x)[0] != 0.5]

for (i, a1) in enumerate(alist):
    if a1 > n/2:
        print('-1')
        exit()
    for a2 in alist[i+1:]:
        if a1+a2 == n:
            print(a1, a2)
            exit()
print('-1')
0