結果
問題 | No.207 世界のなんとか |
ユーザー | MOD9cXWdOsRxvPy |
提出日時 | 2022-09-19 12:08:52 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
WA
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 7,200 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-06-01 16:10:24 |
合計ジャッジ時間 | 1,586 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 33 ms
16,896 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 33 ms
17,152 KB |
testcase_07 | AC | 33 ms
17,024 KB |
testcase_08 | AC | 33 ms
16,896 KB |
testcase_09 | AC | 33 ms
17,024 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 33 ms
16,896 KB |
testcase_17 | AC | 34 ms
16,896 KB |
testcase_18 | AC | 34 ms
16,896 KB |
ソースコード
(define (chk3p n) (cond ((= 0 (mod n 3)) #t) ((or (= 3 (div n 10)) (= 3 (mod n 10))) #t) (else #f))) (define (take3 ap) (filter (^ (x) (chk3p x)) ap)) (let* ((from (read)) (to (read))) (map (^ (x) (display x) (newline)) (take3 (iota (+ 1 (- to from)) from))) )