結果

問題 No.305 鍵(2)
ユーザー titiatitia
提出日時 2022-11-08 03:32:10
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 12,330 ms
コンパイル使用メモリ 401,780 KB
実行使用メモリ 25,476 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-07-17 03:13:51
合計ジャッジ時間 13,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
25,220 KB
testcase_01 AC 25 ms
25,220 KB
testcase_02 AC 24 ms
24,580 KB
testcase_03 AC 24 ms
24,964 KB
testcase_04 AC 25 ms
25,220 KB
testcase_05 AC 26 ms
24,580 KB
testcase_06 AC 22 ms
24,820 KB
testcase_07 AC 26 ms
24,964 KB
testcase_08 AC 27 ms
25,476 KB
testcase_09 AC 26 ms
25,220 KB
testcase_10 AC 25 ms
24,964 KB
testcase_11 AC 25 ms
25,220 KB
testcase_12 AC 25 ms
24,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `y`
  --> src/main.rs:24:21
   |
24 |             let (x, y): (i32, String) = {
   |                     ^ help: if this is intentional, prefix it with an underscore: `_y`
   |
   = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

fn main() {


    let mut ans=vec![0;10];
    let mut flag=0;

    for i in 0..10{

        let mut maxj=-1;
        let mut indj=-1;

        for j in 0..10{

            ans[i]=j;

            println!(
                "{}",
                ans.iter()
                    .map(std::string::ToString::to_string)
                    .collect::<Vec<_>>()
                    .join("")
            );

            let (x, y): (i32, String) = {
                let mut line: String = String::new();
                std::io::stdin().read_line(&mut line).unwrap();
                let mut iter = line.split_whitespace();
                (
                    iter.next().unwrap().parse().unwrap(),
                    iter.next().unwrap().parse().unwrap(),
                )
            };

            if x==10{
                flag=1;
                break;
            }

            if x>maxj{
                maxj=x;
                indj=j;
            }
        }
        if flag==1{
            break;
        }
        ans[i]=indj;
    }
}
0