結果

問題 No.676 C0nvertPr0b1em
ユーザー Common LispCommon Lisp
提出日時 2024-10-17 01:34:58
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 37,136 KB
実行使用メモリ 29,888 KB
最終ジャッジ日時 2024-10-17 01:35:00
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 9 ms
27,852 KB
testcase_24 AC 10 ms
29,884 KB
testcase_25 WA -
testcase_26 AC 9 ms
25,768 KB
testcase_27 AC 10 ms
29,856 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 17 OCT 2024 01:34:58 AM):

; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.023

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((s (read-line)))
    (loop for c across s
          do (write-char (cond
                          ((or (char= c #\I) (char= c #\i)) #\1)
                          ((or (char= c #\O) (char= c #\o)) #\0)
                          (t c))))
    (terpri)))
(main)
0