結果
問題 | No.649 ここでちょっとQK! |
ユーザー | taba |
提出日時 | 2024-07-31 10:46:53 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,138 bytes |
コンパイル時間 | 12,658 ms |
コンパイル使用メモリ | 389,108 KB |
実行使用メモリ | 14,024 KB |
最終ジャッジ日時 | 2024-07-31 10:47:12 |
合計ジャッジ時間 | 18,402 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,276 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,812 KB |
testcase_03 | AC | 261 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
コンパイルメッセージ
warning: unused imports: `BTreeSet`, `HashMap`, `HashSet`, `VecDeque` --> src/main.rs:2:19 | 2 | collections::{BTreeSet, HashMap, HashSet, VecDeque}, | ^^^^^^^^ ^^^^^^^ ^^^^^^^ ^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `proconio::marker::Chars` --> src/main.rs:8:5 | 8 | use proconio::marker::Chars; | ^^^^^^^^^^^^^^^^^^^^^^^
ソースコード
use std::{ collections::{BTreeSet, HashMap, HashSet, VecDeque}, fmt::Debug, io::stdin, str::FromStr, }; use proconio::marker::Chars; fn main() { // proconio::input! { // q: usize, // k: usize, // } let x = read::<u64>(); let (q, k) = (x[0], x[1]); let mut query = (0..q).flat_map(|_| read::<u64>()); let mut s = Vec::new(); while let Some(q) = query.next() { match q { 1 => { let val = query.next().unwrap(); let p = s.partition_point(|&a| a < val); s.insert(p, val); } 2 => { if s.len() < k as usize { println!("-1"); } else { let val = s.remove(k as usize - 1); println!("{val}"); } } _ => unreachable!(), } } } fn read<T>() -> Vec<T> where T: FromStr, <T as std::str::FromStr>::Err: Debug, { let mut s = String::new(); stdin().read_line(&mut s).unwrap(); s.split(' ').map(|v| v.trim().parse().expect(v)).collect() }