結果
問題 | No.365 ジェンガソート |
ユーザー |
![]() |
提出日時 | 2018-11-20 20:42:04 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 12,135 ms |
コンパイル使用メモリ | 379,680 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 15:43:50 |
合計ジャッジ時間 | 14,761 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 41 |
ソースコード
use std::io::Read; fn main() { let mut buf = String::new(); std::io::stdin().read_to_string(&mut buf).unwrap(); let mut iter = buf.split_whitespace(); let n: usize = iter.next().unwrap().parse().unwrap(); let lengths = iter.rev() .map(|l| l.parse::<usize>().unwrap()); let mut search_num: usize = n; let mut count: usize = 0; for length in lengths { if length == search_num { count += 1; search_num -= 1; } } println!("{}", n - count); }