結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | siman |
提出日時 | 2020-07-25 03:51:40 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 438 bytes |
コンパイル時間 | 48 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-06-26 05:28:27 |
合計ジャッジ時間 | 5,562 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 95 ms
12,544 KB |
testcase_01 | AC | 93 ms
12,416 KB |
testcase_02 | AC | 864 ms
12,544 KB |
testcase_03 | AC | 726 ms
12,672 KB |
testcase_04 | AC | 747 ms
12,416 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
ソースコード
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) res = A.divisor_list.count { |x| B % x == 0 } if res.even? puts 'Even' else puts 'Odd' end