結果

問題 No.638 Sum of "not power of 2"
ユーザー alexara1123alexara1123
提出日時 2019-09-23 21:32:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,600 KB
実行使用メモリ 58,952 KB
最終ジャッジ日時 2023-10-19 08:19:03
合計ジャッジ時間 1,547 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,952 KB
testcase_01 AC 43 ms
58,952 KB
testcase_02 AC 44 ms
58,952 KB
testcase_03 AC 45 ms
58,952 KB
testcase_04 AC 39 ms
53,408 KB
testcase_05 AC 46 ms
58,952 KB
testcase_06 AC 41 ms
53,408 KB
testcase_07 AC 40 ms
53,408 KB
testcase_08 AC 40 ms
53,408 KB
testcase_09 AC 39 ms
53,408 KB
testcase_10 AC 39 ms
53,408 KB
testcase_11 AC 39 ms
53,408 KB
testcase_12 AC 45 ms
58,952 KB
testcase_13 AC 39 ms
53,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())

    l = []
    for i in range(70):
        l.append(2 ** i)

    for a in range(3, 1000):
        if a in l:
            continue
        if n - a not in l and n - a > 0:
            print(a, n - a)
            exit()
    print(-1)


if __name__ == '__main__':
    main()
0