結果

問題 No.683 Two Operations No.3
ユーザー yuruhiyayuruhiya
提出日時 2020-07-02 21:54:13
言語 Crystal
(1.11.2)
結果
MLE  
実行時間 -
コード長 502 bytes
コンパイル時間 12,242 ms
コンパイル使用メモリ 296,496 KB
実行使用メモリ 813,328 KB
最終ジャッジ日時 2024-06-30 20:25:40
合計ジャッジ時間 14,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 MLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = read_line.split.map &.to_i64
hash = Hash(Tuple(Int64, Int64), Bool).new { |hash, key|
  n, m = key
  if n < 0 || m < 0
    hash[key] = false
  elsif n == 0 && m == 0
    hash[key] = true
  elsif n % 2 == 1 && m % 2 == 1
    hash[key] = false
  elsif n % 2 == 0 && m % 2 == 1
    hash[key] = hash[{n // 2, m - 1}]
  elsif n % 2 == 1 && m % 2 == 0
    hash[key] = hash[{n - 1, m // 2}]
  else
    hash[key] = hash[{n - 1, m // 2}] || hash[{n // 2, m - 1}]
  end
}
puts hash[{a, b}] ? "Yes" : "No"
0