結果

問題 No.676 C0nvertPr0b1em
コンテスト
ユーザー kappybar
提出日時 2020-09-05 12:54:45
言語 Scheme
(Gauche-0.9.15)
コンパイル:
true
実行:
gosh _filename_
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 199 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 349 ms
コンパイル使用メモリ 6,656 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2026-05-22 06:58:23
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

(use srfi-13)
(define (change c)
     ( if (or (equal? c #\I) (equal? c #\l)) #\1 
      (if (or (equal? c #\O) (equal? c #\o)) #\0 c)  
     )
)
(let ((s (read-line))) (print (string-map change s)))
0