結果

問題 No.1298 OR XOR
ユーザー shinshin
提出日時 2022-11-20 11:09:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 11,780 KB
実行使用メモリ 10,132 KB
最終ジャッジ日時 2023-10-21 10:57:23
合計ジャッジ時間 1,793 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,132 KB
testcase_01 AC 29 ms
10,132 KB
testcase_02 AC 28 ms
10,132 KB
testcase_03 AC 29 ms
10,132 KB
testcase_04 AC 29 ms
10,132 KB
testcase_05 AC 31 ms
10,132 KB
testcase_06 AC 29 ms
10,132 KB
testcase_07 AC 29 ms
10,132 KB
testcase_08 AC 29 ms
10,132 KB
testcase_09 AC 28 ms
10,132 KB
testcase_10 AC 29 ms
10,132 KB
testcase_11 AC 29 ms
10,132 KB
testcase_12 AC 29 ms
10,132 KB
testcase_13 AC 29 ms
10,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#OR XOR

N = int(input())

if N.bit_count() == 1:
    print(-1 , -1 , -1)
else:
    c = bin(N)
    end = c.rfind("1")
    a = "0b" + c[end:]
    b = c[:end] + "0" * (len(c) - end)
    
    
    A = int(a , 2)
    B = int(b , 2)
    C = int(c , 2)
    
    print(A , B , C)
0