結果

問題 No.36 素数が嫌い!
ユーザー MiyamonYMiyamonY
提出日時 2019-09-06 19:32:10
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 68,864 KB
最終ジャッジ日時 2024-06-24 09:32:21
合計ジャッジ時間 10,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
68,864 KB
testcase_01 WA -
testcase_02 AC 142 ms
29,952 KB
testcase_03 AC 142 ms
30,208 KB
testcase_04 AC 141 ms
30,080 KB
testcase_05 AC 137 ms
30,080 KB
testcase_06 AC 317 ms
33,856 KB
testcase_07 AC 127 ms
30,080 KB
testcase_08 AC 124 ms
30,204 KB
testcase_09 AC 124 ms
29,952 KB
testcase_10 AC 124 ms
29,952 KB
testcase_11 AC 122 ms
29,952 KB
testcase_12 AC 125 ms
29,952 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

(use math.prime)

(let* ((n (read)))
  (let1 m
	(let loop ((primes *primes*)
		   (m n)
		   (num 0))
	  (let1 prime #?=(car primes)
		(cond  ((< m (* prime prime)) num)
		       ((small-prime? m) (+ num 1))
		       (else
			(if (= (mod m prime) 0)
			    (loop primes (div m prime) (+ num 1))
			    (loop (cdr primes) m num))))))
	(print (if (> m 2) "YES" "NO"))))
0