結果

問題 No.2925 2-Letter Shiritori
ユーザー tnodino
提出日時 2024-10-06 18:51:45
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 11,281 ms
コンパイル使用メモリ 401,448 KB
実行使用メモリ 25,232 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-12 14:01:14
合計ジャッジ時間 13,005 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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