結果

問題 No.36 素数が嫌い!
ユーザー keidenkeiden
提出日時 2024-09-18 00:41:40
言語 Scheme
(Gauche-0.9.14)
結果
RE  
実行時間 -
コード長 171 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 30,904 KB
最終ジャッジ日時 2024-09-18 00:41:46
合計ジャッジ時間 5,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
30,208 KB
testcase_01 AC 146 ms
30,464 KB
testcase_02 AC 142 ms
30,208 KB
testcase_03 AC 141 ms
30,336 KB
testcase_04 AC 141 ms
30,208 KB
testcase_05 AC 146 ms
30,208 KB
testcase_06 AC 140 ms
30,464 KB
testcase_07 AC 144 ms
30,208 KB
testcase_08 AC 141 ms
30,336 KB
testcase_09 AC 141 ms
30,336 KB
testcase_10 AC 142 ms
30,192 KB
testcase_11 AC 142 ms
30,208 KB
testcase_12 AC 153 ms
30,336 KB
testcase_13 AC 143 ms
30,904 KB
testcase_14 AC 140 ms
30,208 KB
testcase_15 AC 143 ms
30,208 KB
testcase_16 AC 145 ms
30,208 KB
testcase_17 RE -
testcase_18 AC 138 ms
30,452 KB
testcase_19 AC 143 ms
30,208 KB
testcase_20 AC 146 ms
30,164 KB
testcase_21 AC 140 ms
30,332 KB
testcase_22 AC 139 ms
30,208 KB
testcase_23 AC 141 ms
30,208 KB
testcase_24 AC 143 ms
30,336 KB
testcase_25 AC 140 ms
30,336 KB
testcase_26 AC 144 ms
30,208 KB
testcase_27 AC 144 ms
30,208 KB
testcase_28 AC 149 ms
30,208 KB
testcase_29 AC 143 ms
30,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use math.prime)
(use srfi.217)

(define yuki36
  (let*
    ((n (read)) (pfs (length (mc-factorize n))))
    (display (if (= n 1) "NO\n" (if (<= 3 pfs) "YES\n" "NO\n")))))
0