結果
問題 |
No.2925 2-Letter Shiritori
|
ユーザー |
![]() |
提出日時 | 2025-05-10 14:29:11 |
言語 | Ruby (3.4.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 265 ms |
コンパイル使用メモリ | 8,100 KB |
実行使用メモリ | 49,956 KB |
最終ジャッジ日時 | 2025-05-10 14:29:19 |
合計ジャッジ時間 | 6,959 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | TLE * 1 -- * 1 |
other | -- * 10 |
コンパイルメッセージ
Syntax OK
ソースコード
class Start def main _ = input echo "? aa" while true x = input break if x[0] == "!" echo "? #{x[-1]}a" end end protected def echo(*x) print(*x) puts end def input = gets.chomp end Start.new.main