結果

問題 No.36 素数が嫌い!
ユーザー kokoa1046kokoa1046
提出日時 2017-09-08 21:50:03
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-04-24 20:23:21
合計ジャッジ時間 4,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 107 ms
12,288 KB
testcase_03 AC 112 ms
12,416 KB
testcase_04 AC 111 ms
12,160 KB
testcase_05 AC 105 ms
12,288 KB
testcase_06 AC 104 ms
12,416 KB
testcase_07 AC 105 ms
12,160 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 106 ms
12,288 KB
testcase_12 AC 106 ms
12,288 KB
testcase_13 AC 105 ms
12,288 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 106 ms
12,160 KB
testcase_17 AC 108 ms
12,416 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 109 ms
12,288 KB
testcase_27 AC 105 ms
12,416 KB
testcase_28 AC 110 ms
12,288 KB
testcase_29 AC 105 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !
require 'prime'



if Prime.prime_division(6).inject(0) {|sum, i| sum + i[1] }>2 then
    puts "YES"
else
    puts "NO"
end



0