結果

問題 No.2925 2-Letter Shiritori
ユーザー atcoder8atcoder8
提出日時 2024-10-12 17:03:42
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 596 bytes
コンパイル時間 16,635 ms
コンパイル使用メモリ 379,172 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-10-12 17:04:23
合計ジャッジ時間 23,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{read_to_string, Write};

use proconio::input_interactive;

fn main() {
    input_interactive!(alpha: String);

    let mut prev = alpha.repeat(2);
    loop {
        println!("? {}", prev.chars().rev().collect::<String>());
        std::io::stdout().flush().unwrap();

        let line = read_to_string(std::io::stdin()).unwrap();
        let mut line = line.split_whitespace();

        let symbol = line.next().unwrap().parse::<char>().unwrap();

        if symbol == '!' {
            break;
        }

        let t = line.next().unwrap();
        prev = t.to_string();
    }
}
0