結果

問題 No.2925 2-Letter Shiritori
ユーザー tnodino
提出日時 2024-10-06 18:53:40
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 12,810 ms
コンパイル使用メモリ 380,012 KB
実行使用メモリ 25,616 KB
平均クエリ数 1.00
最終ジャッジ日時 2024-10-12 14:01:12
合計ジャッジ時間 14,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input_interactive;
use proconio::marker::Chars;

#[allow(non_snake_case)]
fn main() {
    input_interactive! {
        a: char,
    }
    println!("? {}{}{}", a, a, a);
    for _ in 0..100 {
        input_interactive! {
            (f, b): (char, Chars),
        }
        if f == '!' {
            break;
        }
        println!("? {}{}{}", b[1], a, a);
    }
}
0