結果

問題 No.638 Sum of "not power of 2"
ユーザー alexara1123alexara1123
提出日時 2019-09-23 21:32:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 58,496 KB
最終ジャッジ日時 2024-09-19 04:34:21
合計ジャッジ時間 1,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,112 KB
testcase_01 AC 44 ms
58,368 KB
testcase_02 AC 43 ms
58,496 KB
testcase_03 AC 43 ms
58,240 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 43 ms
58,112 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 36 ms
51,712 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 36 ms
51,456 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 45 ms
58,240 KB
testcase_13 AC 38 ms
51,456 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