結果

問題 No.305 鍵(2)
ユーザー tonyu0tonyu0
提出日時 2020-04-29 18:06:39
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 11,956 ms
コンパイル使用メモリ 405,428 KB
実行使用メモリ 25,220 KB
平均クエリ数 50.62
最終ジャッジ日時 2024-07-17 02:41:10
合計ジャッジ時間 13,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,952 KB
testcase_01 AC 24 ms
24,580 KB
testcase_02 AC 26 ms
25,220 KB
testcase_03 AC 25 ms
25,220 KB
testcase_04 AC 23 ms
24,580 KB
testcase_05 AC 22 ms
24,836 KB
testcase_06 AC 26 ms
25,088 KB
testcase_07 AC 24 ms
25,220 KB
testcase_08 AC 23 ms
24,836 KB
testcase_09 AC 24 ms
24,836 KB
testcase_10 AC 24 ms
24,836 KB
testcase_11 AC 24 ms
24,964 KB
testcase_12 AC 23 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn input(a: &[usize]) -> (usize, String) {
    for i in 0..10 {
        print!("{}", a[i]);
    }
    println!("",);
    let mut s: String = String::new();
    std::io::stdin().read_line(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n = itr.next().unwrap().parse().unwrap();
    let s = itr.next().unwrap().to_string();
    (n, s)
}

fn main() {
    let mut ans = vec![9; 10];
    let mut target = 0;

    let res = input(&ans);
    if res.1 == "unlocked" {
        return;
    }
    let mut same = res.0;

    loop {
        ans[target] -= 1;
        let (n, s) = input(&ans);
        if s == "unlocked" {
            break;
        }
        if n > same {
            same = n;
            target += 1;
        } else if n < same {
            ans[target] += 1;
            target += 1;
        }
    }
}
0