結果
問題 |
No.676 C0nvertPr0b1em
|
ユーザー |
|
提出日時 | 2020-09-05 12:54:45 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 199 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 5,504 KB |
実行使用メモリ | 16,640 KB |
最終ジャッジ日時 | 2024-11-28 03:16:31 |
合計ジャッジ時間 | 2,862 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
(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)))