結果
| 問題 |
No.2034 Anti Lexicography
|
| コンテスト | |
| ユーザー |
horiesiniti
|
| 提出日時 | 2023-04-24 03:14:56 |
| 言語 | Ruby (3.4.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 101 bytes |
| コンパイル時間 | 577 ms |
| コンパイル使用メモリ | 7,424 KB |
| 実行使用メモリ | 98,816 KB |
| 最終ジャッジ日時 | 2024-11-08 07:38:35 |
| 合計ジャッジ時間 | 5,667 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 2 TLE * 1 -- * 12 |
コンパイルメッセージ
Syntax OK
ソースコード
x=("a".."z").to_a
h=Hash[x.zip(x.reverse)]
ans=""
gets
gets.chomp.each_char{|e|
ans+=h[e]
}
puts ans
horiesiniti