結果
| 問題 |
No.341 沈黙の期間
|
| コンテスト | |
| ユーザー |
tubo28
|
| 提出日時 | 2016-04-04 02:40:56 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 1,775 bytes |
| コンパイル時間 | 12,696 ms |
| コンパイル使用メモリ | 395,444 KB |
| 最終ジャッジ日時 | 2024-11-14 19:37:05 |
| 合計ジャッジ時間 | 13,403 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
error: use of deprecated `try` macro --> src/main.rs:40:17 | 40 | let s = try!(self.fetch_token()); | ^^^^^^^^^^^^^^^^^^^^^^^^ | = note: in the 2018 edition `try` is a reserved keyword, and the `try!()` macro is deprecated help: you can use the `?` operator instead | 40 - let s = try!(self.fetch_token()); 40 + let s = self.fetch_token()?; | help: alternatively, you can still access the deprecated `try!()` macro using the "raw identifier" syntax | 40 | let s = r#try!(self.fetch_token()); | ++ error: use of deprecated `try` macro --> src/main.rs:41:17 | 41 | let t = try!(s.parse::<T>().map_err(|_| "Parse error")); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: in the 2018 edition `try` is a reserved keyword, and the `try!()` macro is deprecated help: you can use the `?` operator instead | 41 - let t = try!(s.parse::<T>().map_err(|_| "Parse error")); 41 + let t = s.parse::<T>().map_err(|_| "Parse error")?; | help: alternatively, you can still access the deprecated `try!()` macro using the "raw identifier" syntax | 41 | let t = r#try!(s.parse::<T>().map_err(|_| "Parse error")); | ++ error: could not compile `main` (bin "main") due to 2 previous errors
ソースコード
use std::cmp::*;
fn main(){
let mut sc = Scanner::new();
while let Ok(s) = sc.next() {
let s:String = s;
let s = s.chars().collect::<Vec<char>>();
let n = s.len();
let mut i = 0;
let mut ans = 0;
while i < n {
if s[i] != '…' {
i += 1;
continue;
}
let mut j = i;
while j < n && s[j] == '…' {
j += 1;
}
ans = max(ans, j-i);
i = j;
}
println!("{}", ans);
}
}
#[allow(dead_code)]
struct Scanner {
token_buffer : Vec<String>,
index : usize,
}
#[allow(dead_code)]
impl Scanner {
fn new() -> Scanner {
Scanner { token_buffer: vec![], index: 0 }
}
fn next<T>(&mut self) -> Result<T,&str> where T: std::str::FromStr {
let s = try!(self.fetch_token());
let t = try!(s.parse::<T>().map_err(|_| "Parse error"));
Ok(t)
}
fn unwrapped<T>(&mut self) -> T where T: std::str::FromStr {
self.next::<T>().unwrap()
}
fn fetch_token(&mut self) -> Result<&String,&str> {
while self.index >= self.token_buffer.len() {
let mut st = String::new();
while st.trim() == "" {
match std::io::stdin().read_line(&mut st) {
Ok(l) if l > 0 => continue,
Ok(_) => return Err("End of file"),
Err(_) => return Err("Failed to read line"),
}
}
self.token_buffer = st.split_whitespace()
.map(|x| x.to_string())
.collect();
self.index = 0;
}
self.index += 1;
Ok(&self.token_buffer[self.index - 1])
}
}
tubo28