結果

問題 No.365 ジェンガソート
ユーザー neko_the_shadowneko_the_shadow
提出日時 2024-02-14 16:24:03
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 966 ms
コンパイル使用メモリ 179,796 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-02-14 16:24:14
合計ジャッジ時間 3,442 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 1 ms
6,676 KB
testcase_04 AC 1 ms
6,676 KB
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 1 ms
6,676 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,676 KB
testcase_15 AC 1 ms
6,676 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
6,676 KB
testcase_19 AC 6 ms
6,676 KB
testcase_20 AC 2 ms
6,676 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 6 ms
6,676 KB
testcase_37 AC 6 ms
6,676 KB
testcase_38 WA -
testcase_39 AC 6 ms
6,676 KB
testcase_40 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `N`
 --> Main.rs:4:9
  |
4 |     let N = input().parse::<usize>();
  |         ^ help: if this is intentional, prefix it with an underscore: `_N`
  |
  = note: `#[warn(unused_variables)]` on by default

warning: variable `N` should have a snake case name
 --> Main.rs:4:9
  |
4 |     let N = input().parse::<usize>();
  |         ^ help: convert the identifier to snake case: `n`
  |
  = note: `#[warn(non_snake_case)]` on by default

warning: variable `A` should have a snake case name
 --> Main.rs:5:9
  |
5 |     let A = input().split_whitespace().map(|t| t.parse::<usize>().unwrap()).collect::<Vec<_>>();
  |         ^ help: convert the identifier to snake case: `a`

warning: 3 warnings emitted

ソースコード

diff #

use std::{cmp::max, io::stdin};

fn main() {
    let N = input().parse::<usize>();
    let A = input().split_whitespace().map(|t| t.parse::<usize>().unwrap()).collect::<Vec<_>>();

    let mut mx = 0;
    let mut c = 0;
    for a in A {
        if a < mx {
            c += 1;
        }
        mx = max(mx, a);
    }
    println!("{}", c);
}

fn input() -> String {
    let mut buf = String::new();
    stdin().read_line(&mut buf).unwrap();
    buf.trim().to_string()
}
0