結果

問題 No.1298 OR XOR
ユーザー uni_pythonuni_python
提出日時 2020-12-05 16:22:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-09-15 17:57:40
合計ジャッジ時間 1,602 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))


mod=10**9+7
N=I()

Nb=bin(N)[2:]

if Nb.count("1")==1:
    print(-1,-1,-1)
else:
    C=N
    A=0
    B=0
    flag=0
    for i in range(35):#i桁目
        if (N>>i)&1:
            if flag:
                B+=(1<<i)
            else:
                A+=(1<<i)
                flag=1
    print(A,B,C)
            
                
0