結果

問題 No.1298 OR XOR
ユーザー HAPPAHAPPA
提出日時 2020-11-27 21:28:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-23 22:05:39
合計ジャッジ時間 1,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
input = sys.stdin.readline
f_inf = float('inf')
mod = 10 ** 9 + 7


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

    C = n
    A = 0
    for i in range(40):
        if n & (1 << i):
            A = 1 << i
            break
    B = n ^ A
    if B != 0:
        print(A, B, C)
    else:
        print(-1, -1, -1)


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