結果

問題 No.1298 OR XOR
ユーザー KudeKude
提出日時 2020-11-27 21:25:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 53,728 KB
最終ジャッジ日時 2024-07-23 21:57:47
合計ジャッジ時間 1,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,484 KB
testcase_01 AC 42 ms
52,368 KB
testcase_02 AC 37 ms
53,544 KB
testcase_03 AC 37 ms
52,492 KB
testcase_04 AC 38 ms
52,852 KB
testcase_05 AC 37 ms
52,680 KB
testcase_06 AC 39 ms
52,404 KB
testcase_07 AC 37 ms
52,092 KB
testcase_08 AC 37 ms
51,696 KB
testcase_09 AC 38 ms
52,248 KB
testcase_10 AC 38 ms
52,216 KB
testcase_11 AC 37 ms
52,404 KB
testcase_12 AC 40 ms
52,568 KB
testcase_13 AC 37 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a, b, c = 0, 0, 0
for d in range(31, -1, -1):
    if n >> d & 1:
        a |= 1 << d
        b |= 1 << d
        a, b, c = b, c, a

if 0 in (a, b, c):
    a, b, c = -1, -1, -1
print(a, b, c)
0