結果

問題 No.1298 OR XOR
ユーザー FromBooskaFromBooska
提出日時 2023-10-01 21:16:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-07-26 13:32:30
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,348 KB
testcase_01 AC 38 ms
52,704 KB
testcase_02 AC 39 ms
51,876 KB
testcase_03 AC 39 ms
52,960 KB
testcase_04 AC 39 ms
52,700 KB
testcase_05 AC 38 ms
52,852 KB
testcase_06 AC 39 ms
52,192 KB
testcase_07 AC 38 ms
53,636 KB
testcase_08 AC 38 ms
53,576 KB
testcase_09 AC 38 ms
52,372 KB
testcase_10 AC 39 ms
52,428 KB
testcase_11 AC 38 ms
52,936 KB
testcase_12 AC 39 ms
52,276 KB
testcase_13 AC 39 ms
52,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ビット演算だからビット桁ごとに独立に考える
# Nのビット桁が1のときに、A, B, Cの2数に割り振っていく
# Nのビット桁1が1個しかないと、割り振られなかったところが0になってしまうので存在しない
# Nのビット桁1が2個以上あれば、最初はABに割り振り、あとはACに割り振ればいいだろう

N = int(input())
if bin(N).count('1') <= 1:
    print(-1, -1, -1)
else:
    A, B, C = 0, 0, 0
    first = False
    for d in range(31):
        if N>>d&1 == 1:
            if first == False:
                A += 1<<d
                B += 1<<d
                first = True
            elif first == True:
                A += 1<<d
                C += 1<<d
    #print(bin(A)[2:], bin(B)[2:], bin(C)[2:])
    #print(A|B == B|C == C|A == N, A^B^C==0)    
    print(A, B, C)
0