結果

問題 No.207 世界のなんとか
ユーザー go_boardwalkgo_boardwalk
提出日時 2017-03-31 02:02:12
言語 Scheme
(Gauche-0.9.13)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 5,336 KB
実行使用メモリ 12,892 KB
最終ジャッジ日時 2023-09-21 09:00:55
合計ジャッジ時間 1,454 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
12,808 KB
testcase_01 AC 27 ms
12,628 KB
testcase_02 AC 26 ms
12,664 KB
testcase_03 AC 27 ms
12,828 KB
testcase_04 AC 28 ms
12,844 KB
testcase_05 AC 26 ms
12,656 KB
testcase_06 AC 26 ms
12,648 KB
testcase_07 AC 25 ms
12,820 KB
testcase_08 AC 26 ms
12,708 KB
testcase_09 AC 25 ms
12,852 KB
testcase_10 AC 26 ms
12,840 KB
testcase_11 AC 25 ms
12,892 KB
testcase_12 AC 25 ms
12,668 KB
testcase_13 AC 26 ms
12,752 KB
testcase_14 AC 26 ms
12,700 KB
testcase_15 AC 26 ms
12,872 KB
testcase_16 AC 26 ms
12,608 KB
testcase_17 AC 26 ms
12,616 KB
testcase_18 AC 26 ms
12,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define a (read))
(define b (read))

(for-each print
          (filter (lambda (x)
                    (or (zero? (mod x 3))
                        (string-scan (number->string x) "3")))
                  (iota (- (+ b 1) a) a)))
0