結果

問題 No.36 素数が嫌い!
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-06 20:58:26
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 607 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-06-27 00:42:24
合計ジャッジ時間 6,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
29,312 KB
testcase_01 AC 124 ms
29,312 KB
testcase_02 AC 116 ms
29,440 KB
testcase_03 AC 114 ms
29,440 KB
testcase_04 AC 117 ms
29,312 KB
testcase_05 AC 116 ms
29,440 KB
testcase_06 AC 113 ms
29,568 KB
testcase_07 AC 114 ms
29,184 KB
testcase_08 AC 114 ms
29,440 KB
testcase_09 AC 114 ms
29,440 KB
testcase_10 AC 114 ms
29,184 KB
testcase_11 AC 115 ms
29,184 KB
testcase_12 AC 117 ms
29,440 KB
testcase_13 AC 607 ms
50,176 KB
testcase_14 AC 117 ms
29,568 KB
testcase_15 AC 114 ms
29,312 KB
testcase_16 AC 113 ms
29,312 KB
testcase_17 AC 117 ms
29,252 KB
testcase_18 AC 113 ms
29,312 KB
testcase_19 AC 115 ms
29,184 KB
testcase_20 AC 129 ms
29,312 KB
testcase_21 AC 115 ms
29,440 KB
testcase_22 AC 115 ms
29,440 KB
testcase_23 AC 113 ms
29,360 KB
testcase_24 AC 184 ms
31,360 KB
testcase_25 AC 115 ms
29,312 KB
testcase_26 AC 114 ms
29,312 KB
testcase_27 AC 117 ms
29,568 KB
testcase_28 AC 113 ms
29,312 KB
testcase_29 AC 113 ms
29,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env gosh
(use math.prime)
(define (judge n)
    (not (length<=? (naive-factorize n) 2))
)
(let* ((n (read)))
    (if (judge n) (print "YES") (print "NO"))
)
0