結果

問題 No.36 素数が嫌い!
ユーザー MiyamonYMiyamonY
提出日時 2019-09-07 00:18:15
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 2,191 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-06-24 22:42:37
合計ジャッジ時間 11,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
17,792 KB
testcase_01 AC 87 ms
17,792 KB
testcase_02 AC 31 ms
17,408 KB
testcase_03 AC 52 ms
17,920 KB
testcase_04 AC 49 ms
17,792 KB
testcase_05 AC 51 ms
17,792 KB
testcase_06 AC 54 ms
17,792 KB
testcase_07 AC 54 ms
17,920 KB
testcase_08 AC 48 ms
17,792 KB
testcase_09 AC 47 ms
17,920 KB
testcase_10 AC 49 ms
17,792 KB
testcase_11 AC 745 ms
17,792 KB
testcase_12 AC 2,185 ms
17,920 KB
testcase_13 AC 2,191 ms
17,792 KB
testcase_14 AC 56 ms
17,792 KB
testcase_15 AC 47 ms
17,792 KB
testcase_16 AC 49 ms
17,792 KB
testcase_17 AC 32 ms
17,408 KB
testcase_18 AC 48 ms
17,920 KB
testcase_19 AC 135 ms
17,920 KB
testcase_20 AC 118 ms
17,792 KB
testcase_21 AC 331 ms
18,048 KB
testcase_22 AC 83 ms
17,792 KB
testcase_23 AC 61 ms
17,792 KB
testcase_24 AC 357 ms
17,792 KB
testcase_25 AC 420 ms
17,920 KB
testcase_26 AC 877 ms
18,048 KB
testcase_27 AC 84 ms
17,792 KB
testcase_28 AC 785 ms
17,920 KB
testcase_29 AC 64 ms
17,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(let* ((n (read)))

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