結果

問題 No.1298 OR XOR
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 13:47:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 53,704 KB
最終ジャッジ日時 2024-11-04 13:47:18
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,148 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
52,316 KB
testcase_07 AC 33 ms
52,912 KB
testcase_08 AC 33 ms
52,568 KB
testcase_09 AC 33 ms
53,264 KB
testcase_10 AC 38 ms
52,180 KB
testcase_11 AC 38 ms
52,488 KB
testcase_12 AC 37 ms
52,272 KB
testcase_13 AC 37 ms
52,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

a, b, c = 0, 0, 0
for k in range(32):
    if N & (1 << k):
        if a == 0:
            a += 1 << k
        else:
            b += 1 << k
        c += 1 << k

print(a, b, c)
0