結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
30,336 KB
testcase_01 AC 131 ms
30,464 KB
testcase_02 AC 136 ms
30,228 KB
testcase_03 AC 146 ms
30,152 KB
testcase_04 AC 132 ms
30,336 KB
testcase_05 AC 129 ms
30,336 KB
testcase_06 AC 131 ms
30,276 KB
testcase_07 AC 131 ms
30,208 KB
testcase_08 AC 135 ms
30,208 KB
testcase_09 AC 131 ms
30,212 KB
testcase_10 AC 137 ms
30,336 KB
testcase_11 AC 144 ms
30,208 KB
testcase_12 AC 128 ms
30,336 KB
testcase_13 AC 127 ms
30,592 KB
testcase_14 AC 129 ms
30,336 KB
testcase_15 AC 128 ms
30,336 KB
testcase_16 AC 128 ms
30,336 KB
testcase_17 RE -
testcase_18 AC 125 ms
30,336 KB
testcase_19 AC 125 ms
30,336 KB
testcase_20 AC 146 ms
30,208 KB
testcase_21 AC 128 ms
30,336 KB
testcase_22 AC 124 ms
30,164 KB
testcase_23 AC 126 ms
30,208 KB
testcase_24 AC 127 ms
30,208 KB
testcase_25 AC 133 ms
30,288 KB
testcase_26 AC 128 ms
30,208 KB
testcase_27 AC 134 ms
30,208 KB
testcase_28 AC 146 ms
30,208 KB
testcase_29 AC 130 ms
30,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

(display (if (<= 3 (length (mc-factorize (read)))) "YES\n" "NO\n"))
0