結果

問題 No.36 素数が嫌い!
ユーザー MiyamonYMiyamonY
提出日時 2019-09-06 19:29:01
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 383 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 45,836 KB
最終ジャッジ日時 2024-06-24 09:29:04
合計ジャッジ時間 9,807 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
30,208 KB
testcase_01 AC 1,084 ms
33,792 KB
testcase_02 AC 114 ms
30,080 KB
testcase_03 AC 111 ms
30,080 KB
testcase_04 AC 114 ms
30,112 KB
testcase_05 AC 112 ms
30,080 KB
testcase_06 AC 265 ms
33,796 KB
testcase_07 AC 113 ms
29,952 KB
testcase_08 AC 119 ms
29,952 KB
testcase_09 AC 118 ms
30,208 KB
testcase_10 AC 122 ms
30,080 KB
testcase_11 AC 117 ms
30,004 KB
testcase_12 AC 115 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) num)
		       ((small-prime? m) (+ num 1))
		       ((< 2 num) num)
		       (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