結果

問題 No.36 素数が嫌い!
ユーザー keidenkeiden
提出日時 2024-09-18 00:42:25
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 161 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-09-18 00:42:41
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
30,152 KB
testcase_01 AC 119 ms
30,208 KB
testcase_02 AC 124 ms
30,148 KB
testcase_03 AC 125 ms
30,208 KB
testcase_04 AC 126 ms
30,208 KB
testcase_05 AC 124 ms
30,208 KB
testcase_06 AC 147 ms
30,240 KB
testcase_07 AC 124 ms
30,336 KB
testcase_08 AC 121 ms
30,336 KB
testcase_09 AC 126 ms
30,216 KB
testcase_10 AC 126 ms
30,208 KB
testcase_11 AC 125 ms
30,208 KB
testcase_12 AC 128 ms
30,336 KB
testcase_13 AC 127 ms
30,592 KB
testcase_14 AC 124 ms
30,308 KB
testcase_15 AC 148 ms
30,208 KB
testcase_16 AC 136 ms
30,292 KB
testcase_17 AC 132 ms
30,240 KB
testcase_18 AC 132 ms
30,208 KB
testcase_19 AC 133 ms
30,336 KB
testcase_20 AC 129 ms
30,208 KB
testcase_21 AC 127 ms
30,208 KB
testcase_22 AC 125 ms
30,336 KB
testcase_23 AC 148 ms
30,208 KB
testcase_24 AC 125 ms
30,208 KB
testcase_25 AC 119 ms
30,156 KB
testcase_26 AC 124 ms
30,464 KB
testcase_27 AC 121 ms
30,336 KB
testcase_28 AC 123 ms
30,336 KB
testcase_29 AC 120 ms
30,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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