結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,180 KB
testcase_01 AC 41 ms
52,360 KB
testcase_02 AC 40 ms
53,088 KB
testcase_03 AC 38 ms
52,056 KB
testcase_04 AC 38 ms
51,752 KB
testcase_05 AC 38 ms
53,056 KB
testcase_06 AC 38 ms
52,956 KB
testcase_07 AC 37 ms
53,032 KB
testcase_08 AC 37 ms
52,156 KB
testcase_09 AC 38 ms
52,556 KB
testcase_10 AC 38 ms
52,952 KB
testcase_11 AC 38 ms
52,328 KB
testcase_12 AC 37 ms
51,952 KB
testcase_13 AC 37 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[]
for i in range(40):
  if n&1<<i:
    a.append(i)
if len(a)==1:
  print(-1,-1,-1)
else:
  b=0
  c=0
  d=0
  b+=2**a[0]
  d+=2**a[0]
  for i in range(1,len(a)):
    b+=2**a[i]
    c+=2**a[i]
  print(b,c,d)
0