結果
問題 | No.257 N言っちゃダメゲーム (3) |
ユーザー | phspls |
提出日時 | 2020-06-03 21:18:45 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 599 bytes |
コンパイル時間 | 11,904 ms |
コンパイル使用メモリ | 406,932 KB |
実行使用メモリ | 43,556 KB |
平均クエリ数 | 0.17 |
最終ジャッジ日時 | 2024-07-17 03:48:09 |
合計ジャッジ時間 | 15,851 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
24,580 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
fn main() { let mut nk = String::new(); std::io::stdin().read_line(&mut nk).ok(); let nk: Vec<usize> = nk.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let n = nk[0]; let k = nk[1]; let isaft: bool = (n-1) % (k+1) == 0; if isaft { println!("0"); } loop { let mut val = String::new(); std::io::stdin().read_line(&mut val).ok(); let val: usize = val.trim().parse().unwrap(); if val >= n { std::process::exit(0); } println!("{}", (val + k+1 - val % (k+1)).to_string()); } }