結果
問題 | No.116 門松列(1) |
ユーザー | _Clay____ |
提出日時 | 2018-10-13 17:07:48 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 506 bytes |
コンパイル時間 | 10,290 ms |
コンパイル使用メモリ | 403,504 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 18:06:44 |
合計ジャッジ時間 | 11,481 ms |
ジャッジサーバーID (参考情報) |
judge / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 0 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | WA | - |
testcase_13 | AC | 0 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,820 KB |
testcase_17 | AC | 1 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,820 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
use std::io; fn main() { let mut buf = String::new(); io::stdin().read_line(&mut buf).ok(); let mut buf = String::new(); io::stdin().read_line(&mut buf).ok(); let a: Vec<u16> = buf .trim() .split_whitespace() .map(|e| e.parse().ok().unwrap()) .collect(); let mut result = 0; for v in a.windows(3) { let &max = v.iter().max().unwrap(); let &min = v.iter().min().unwrap(); if v[1] == max || v[1] == min { result += 1; } } println!("{}", result); }