結果

問題 No.36 素数が嫌い!
ユーザー MiyamonYMiyamonY
提出日時 2019-09-07 00:11:26
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-06-24 22:25:46
合計ジャッジ時間 28,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,730 ms
17,024 KB
testcase_02 AC 25 ms
16,000 KB
testcase_03 AC 33 ms
17,024 KB
testcase_04 AC 33 ms
17,024 KB
testcase_05 AC 40 ms
16,896 KB
testcase_06 AC 41 ms
16,896 KB
testcase_07 AC 41 ms
17,024 KB
testcase_08 AC 36 ms
16,896 KB
testcase_09 AC 39 ms
17,152 KB
testcase_10 WA -
testcase_11 AC 741 ms
17,152 KB
testcase_12 AC 2,199 ms
16,896 KB
testcase_13 AC 2,208 ms
17,152 KB
testcase_14 AC 1,389 ms
16,896 KB
testcase_15 AC 33 ms
17,024 KB
testcase_16 AC 34 ms
17,024 KB
testcase_17 AC 26 ms
15,872 KB
testcase_18 AC 34 ms
16,896 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,181 ms
16,896 KB
testcase_25 WA -
testcase_26 AC 1,348 ms
17,152 KB
testcase_27 AC 1,891 ms
17,024 KB
testcase_28 AC 1,318 ms
17,152 KB
testcase_29 AC 2,115 ms
16,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(let* ((n (read)))

  (let1 num (let loop ((i 2)
		       (m n))
	      (cond ((< n (* i i)) 0)
		    ((= (mod m i) 0)
		     (+ 1 (loop i (div m i))))
		    (else
		     (loop (+ i 1) m))))
	(print (if (> num 2)
		   "YES"
		   "NO"))))
0