結果

問題 No.36 素数が嫌い!
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-05-19 21:55:36
言語 Scheme
(Gauche-0.9.14)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 163 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-06-27 00:45:21
合計ジャッジ時間 5,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
29,568 KB
testcase_01 AC 125 ms
29,568 KB
testcase_02 AC 120 ms
29,312 KB
testcase_03 AC 120 ms
29,184 KB
testcase_04 AC 123 ms
29,184 KB
testcase_05 AC 118 ms
29,184 KB
testcase_06 AC 123 ms
29,320 KB
testcase_07 AC 123 ms
29,316 KB
testcase_08 AC 123 ms
29,312 KB
testcase_09 AC 119 ms
29,312 KB
testcase_10 AC 120 ms
29,312 KB
testcase_11 AC 117 ms
29,312 KB
testcase_12 AC 116 ms
29,432 KB
testcase_13 AC 118 ms
29,312 KB
testcase_14 AC 122 ms
29,568 KB
testcase_15 AC 118 ms
29,440 KB
testcase_16 AC 118 ms
29,184 KB
testcase_17 RE -
testcase_18 AC 121 ms
29,184 KB
testcase_19 AC 125 ms
29,312 KB
testcase_20 AC 121 ms
29,564 KB
testcase_21 AC 125 ms
29,440 KB
testcase_22 AC 121 ms
29,312 KB
testcase_23 AC 117 ms
29,312 KB
testcase_24 AC 122 ms
29,324 KB
testcase_25 AC 117 ms
29,312 KB
testcase_26 AC 116 ms
29,528 KB
testcase_27 AC 119 ms
29,440 KB
testcase_28 AC 124 ms
29,312 KB
testcase_29 AC 121 ms
29,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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