結果
問題 | No.908 うしたぷにきあくん文字列 |
ユーザー | shinozaki |
提出日時 | 2019-11-04 17:01:04 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 686 bytes |
コンパイル時間 | 12,499 ms |
コンパイル使用メモリ | 379,624 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 23:45:37 |
合計ジャッジ時間 | 13,416 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 0 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
warning: unnecessary parentheses around `if` condition --> src/main.rs:13:11 | 13 | if((i + 1) % 2 == 0) | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 13 - if((i + 1) % 2 == 0) 13 + if (i + 1) % 2 == 0 | warning: unnecessary parentheses around `if` condition --> src/main.rs:15:15 | 15 | if(s[i] != " ") | ^ ^ | help: remove these parentheses | 15 - if(s[i] != " ") 15 + if s[i] != " " | warning: unnecessary parentheses around `if` condition --> src/main.rs:23:15 | 23 | if(s[i] == " ") | ^ ^ | help: remove these parentheses | 23 - if(s[i] == " ") 23 + if s[i] == " " | warning: unnecessary parentheses around `if` condition --> src/main.rs:30:7 | 30 | if(b == true){ print!("Yes"); } | ^ ^ | help: remove these parentheses | 30 - if(b == true){ print!("Yes"); } 30 + if b == true { print!("Yes"); } | warning: variable does not need to be mutable --> src/main.rs:6:9 | 6 | let mut s = s.split(""); | ----^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
ソースコード
use std::io; fn main() { let mut b:bool = true; let mut s: String = String::new(); io::stdin().read_line(&mut s).expect("Failed to read line"); let mut s = s.split(""); let mut s:Vec<&str> = s.collect(); s.remove(0); s.remove(s.len()-1); s.remove(s.len()-2); for i in 0..s.len() { if((i + 1) % 2 == 0) { if(s[i] != " ") { b = false; break; } } else { if(s[i] == " ") { b = false; break; } } } if(b == true){ print!("Yes"); } else { print!("No"); } }