結果

問題 No.1298 OR XOR
ユーザー hakatashihakatashi
提出日時 2020-11-27 21:43:03
言語 Crystal
(1.14.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 11,245 ms
コンパイル使用メモリ 294,892 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 21:40:41
合計ジャッジ時間 12,143 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C;fun strtoll(s: UInt8*,p: UInt8**,b: Int32): Int64;end
class String;def to_i64;C.strtoll(self,nil,10);end;end

n = read_line.to_i64
if n.popcount == 1
  puts "-1 -1 -1"
  exit
end
a, b, c = 0_i64, 0_i64, 0_i64
64_i64.times do |i|
  if n.bit(i) == 1
    if a == 0
      a |= 1_i64 << i
      c |= 1_i64 << i
    else
      b |= 1_i64 << i
      c |= 1_i64 << i
    end
  end
end
puts "#{a} #{b} #{c}"
0