結果

問題 No.1113 二つの整数 / Two Integers
ユーザー yocto_sothothyocto_sothoth
提出日時 2020-07-24 23:27:02
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 174 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-25 22:38:17
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
17,664 KB
testcase_01 AC 96 ms
12,416 KB
testcase_02 AC 902 ms
12,544 KB
testcase_03 AC 753 ms
12,544 KB
testcase_04 AC 758 ms
12,800 KB
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 #

require 'prime'

a, b = gets.split.map(&:to_i)
gcd = a.gcd(b)

if gcd == 1
  puts :Odd
else
  puts gcd.prime_division.map { |_p, e| e + 1 }.inject(:*).odd? ? :Odd : :Even
end
0