結果

問題 No.1224 I hate Sqrt Inequality
ユーザー yuruhiyayuruhiya
提出日時 2020-09-12 16:59:57
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-10 15:55:51
合計ジャッジ時間 3,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,288 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 WA -
testcase_06 AC 103 ms
12,288 KB
testcase_07 WA -
testcase_08 AC 84 ms
12,288 KB
testcase_09 AC 87 ms
12,288 KB
testcase_10 AC 468 ms
12,672 KB
testcase_11 AC 1,027 ms
12,544 KB
testcase_12 AC 84 ms
12,288 KB
testcase_13 AC 84 ms
12,288 KB
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - a
Syntax OK

ソースコード

diff #

require 'prime'
a, b = gets.split.map &:to_i
puts b.prime_division.any? { |x, y| x != 2 && x != 5 } ? 'Yes' : 'No'
0