結果

問題 No.908 うしたぷにきあくん文字列
ユーザー keidenkeiden
提出日時 2024-09-16 21:38:45
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-09-16 21:38:47
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

(define yuki908
  (let*
    (
      (s (read-line))
      (t (string-join (string-split (string-join (string-split s " ") "") "") " "))
    )
    (display (if (equal? s t) "Yes\n" "No\n"))))
0