結果

問題 No.36 素数が嫌い!
ユーザー horiesinitihoriesiniti
提出日時 2017-06-27 09:14:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,997 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 31,648 KB
最終ジャッジ日時 2024-06-27 01:10:41
合計ジャッジ時間 26,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 915 ms
24,696 KB
testcase_01 AC 1,450 ms
29,808 KB
testcase_02 AC 99 ms
12,416 KB
testcase_03 AC 101 ms
12,544 KB
testcase_04 AC 100 ms
12,416 KB
testcase_05 AC 109 ms
12,800 KB
testcase_06 AC 108 ms
12,672 KB
testcase_07 AC 109 ms
12,672 KB
testcase_08 AC 102 ms
12,544 KB
testcase_09 AC 102 ms
12,544 KB
testcase_10 AC 105 ms
12,800 KB
testcase_11 AC 730 ms
23,676 KB
testcase_12 AC 1,984 ms
31,604 KB
testcase_13 AC 1,997 ms
31,576 KB
testcase_14 AC 1,264 ms
28,932 KB
testcase_15 AC 101 ms
12,544 KB
testcase_16 AC 98 ms
12,416 KB
testcase_17 AC 96 ms
12,416 KB
testcase_18 AC 97 ms
12,544 KB
testcase_19 AC 901 ms
24,596 KB
testcase_20 AC 1,966 ms
31,440 KB
testcase_21 AC 1,451 ms
29,932 KB
testcase_22 AC 1,632 ms
31,592 KB
testcase_23 AC 932 ms
24,680 KB
testcase_24 AC 1,110 ms
28,036 KB
testcase_25 AC 1,093 ms
28,024 KB
testcase_26 AC 1,278 ms
28,936 KB
testcase_27 AC 1,633 ms
31,648 KB
testcase_28 AC 1,269 ms
28,944 KB
testcase_29 AC 1,821 ms
31,564 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'
n=gets.to_i

n2=n
ps=[]
Prime.each(10**7) do |p1|
	if p1*p1<=n then
		while n2%p1==0
			ps<<p1
			n2=n2/p1
		end
	else
		break
	end
end
ps<<n2 if n2>1
if ps.size>2 then
	puts "YES"
else
	puts "NO"
end
0