結果

問題 No.207 世界のなんとか
ユーザー Yuzu Mashiro
提出日時 2021-04-01 18:25:02
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-12-17 22:55:44
合計ジャッジ時間 3,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-42)

(define-values (a b)
 (apply values (map string->number (string-split (read-line) " "))))

(do-ec (: n a (+ b 1))
       (or (zero? (mod n 3))
           (string-scan (number->string n) #\3))
       (print n))
0