結果

問題 No.1298 OR XOR
ユーザー roarisroaris
提出日時 2020-11-27 21:48:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 53,476 KB
最終ジャッジ日時 2024-07-26 12:12:40
合計ジャッジ時間 1,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,880 KB
testcase_01 AC 37 ms
52,544 KB
testcase_02 AC 34 ms
52,216 KB
testcase_03 AC 36 ms
52,676 KB
testcase_04 AC 37 ms
52,336 KB
testcase_05 AC 37 ms
53,476 KB
testcase_06 AC 36 ms
52,444 KB
testcase_07 AC 36 ms
52,204 KB
testcase_08 AC 35 ms
52,404 KB
testcase_09 AC 35 ms
52,272 KB
testcase_10 AC 35 ms
52,488 KB
testcase_11 AC 35 ms
52,936 KB
testcase_12 AC 35 ms
53,352 KB
testcase_13 AC 34 ms
53,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
c = 0

for i in range(40):
    if (N>>i)&1:
        c += 1

if c==1:
    print(-1, -1, -1)
    exit()

B, C = 0, 0
flag = True

for i in range(40):
    if (N>>i)&1:
        if flag:
            B = 1<<i
            flag = False
        else:
            C += 1<<i

#print((N|B)==(N|C)==(B|C) and (N^B^C)==0)
print(N, B, C)
0