結果

問題 No.1113 二つの整数 / Two Integers
ユーザー simansiman
提出日時 2020-07-25 03:40:14
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 463 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-06-26 05:14:54
合計ジャッジ時間 8,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
17,408 KB
testcase_01 AC 102 ms
12,544 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Integer
  def divisor_list
    require 'prime'

    return [] if self <= 0
    return [1] if self == 1

    prime_division.map.with_index { |(base, k), i|
      s = i.zero? ? 0 : 1
      (s..k).map { |n| base ** n }
    }.inject { |res, e| res + res.flat_map { |t| e.map { |v| t * v } } }.sort
  end
end

A, B = gets.split.map(&:to_i)

a_div = A.divisor_list
b_div = B.divisor_list
uni = a_div & b_div

if uni.size.even?
  puts 'Even'
else
  puts 'Odd'
end
0