結果

問題 No.1224 I hate Sqrt Inequality
ユーザー gemmarogemmaro
提出日時 2020-09-18 08:11:48
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-22 07:38:57
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,416 KB
testcase_01 AC 90 ms
12,672 KB
testcase_02 AC 88 ms
12,416 KB
testcase_03 AC 90 ms
12,544 KB
testcase_04 AC 86 ms
12,672 KB
testcase_05 AC 92 ms
12,928 KB
testcase_06 AC 101 ms
12,800 KB
testcase_07 AC 94 ms
12,672 KB
testcase_08 WA -
testcase_09 AC 87 ms
12,544 KB
testcase_10 AC 486 ms
12,800 KB
testcase_11 AC 1,050 ms
12,800 KB
testcase_12 AC 88 ms
12,672 KB
testcase_13 AC 86 ms
12,416 KB
testcase_14 AC 137 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

require 'prime'
require 'set'

class Integer
  def primes
    Set.new(Prime.prime_division(self).map { |n, _e| n })
  end
end

def solve
  a = A.primes
  b = B.primes
       .delete(2)
       .delete(5)
  b.subset?(a) ? 'No' : 'Yes'
end

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

puts solve
0