結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー taotao54321taotao54321
提出日時 2018-10-13 22:41:03
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 14,622 ms
コンパイル使用メモリ 389,320 KB
実行使用メモリ 25,244 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-17 01:59:25
合計ジャッジ時間 17,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
24,836 KB
testcase_01 AC 58 ms
24,836 KB
testcase_02 AC 57 ms
25,220 KB
testcase_03 AC 58 ms
25,220 KB
testcase_04 AC 57 ms
25,220 KB
testcase_05 AC 58 ms
24,848 KB
testcase_06 AC 57 ms
24,964 KB
testcase_07 AC 58 ms
24,976 KB
testcase_08 AC 58 ms
24,836 KB
testcase_09 AC 57 ms
25,232 KB
testcase_10 AC 58 ms
25,104 KB
testcase_11 AC 57 ms
25,232 KB
testcase_12 AC 58 ms
25,232 KB
testcase_13 AC 57 ms
24,848 KB
testcase_14 AC 59 ms
24,848 KB
testcase_15 AC 58 ms
25,232 KB
testcase_16 AC 60 ms
24,976 KB
testcase_17 AC 61 ms
24,848 KB
testcase_18 AC 61 ms
24,592 KB
testcase_19 AC 58 ms
25,244 KB
testcase_20 AC 58 ms
24,976 KB
testcase_21 AC 59 ms
25,232 KB
testcase_22 AC 59 ms
24,592 KB
testcase_23 AC 57 ms
25,232 KB
testcase_24 AC 59 ms
25,076 KB
testcase_25 AC 56 ms
24,988 KB
testcase_26 AC 58 ms
24,848 KB
testcase_27 AC 57 ms
24,976 KB
testcase_28 AC 58 ms
24,988 KB
testcase_29 AC 58 ms
25,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case)]

use std::io::{ self, prelude::* };

fn readline() -> String {
    let mut s = String::new();
    io::stdin().read_line(&mut s).expect("i/o error");
    s.trim().to_owned()
}

fn recv() -> i64 {
    readline().parse().unwrap()
}

fn send(x: i64) {
    println!("{}", x);
    io::stdout().flush().expect("i/o error");
}

fn main() {
    let line = readline();
    let mut tokens = line.split_whitespace();
    let N: i64 = tokens.next().unwrap().parse().unwrap();
    let K: i64 = tokens.next().unwrap().parse().unwrap();

    let mut x = (N-1) % (K+1);
    loop {
        send(x);

        let y = recv();
        if y >= N { break; }
        assert!(x+1 <= y && y <= x+K);

        x += K+1;
    }
}
0