結果
| 問題 | No.908 うしたぷにきあくん文字列 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-09-16 21:38:45 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 2,000 ms |
| + 414µs | |
| コード長 | 191 bytes |
| 記録 | |
| コンパイル時間 | 32 ms |
| コンパイル使用メモリ | 6,272 KB |
| 実行使用メモリ | 16,384 KB |
| 最終ジャッジ日時 | 2026-08-29 02:29:53 |
| 合計ジャッジ時間 | 2,176 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
(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"))))