結果
問題 | No.769 UNOシミュレータ |
ユーザー | siman |
提出日時 | 2022-02-03 12:49:24 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,679 bytes |
コンパイル時間 | 13,761 ms |
コンパイル使用メモリ | 379,300 KB |
実行使用メモリ | 18,432 KB |
最終ジャッジ日時 | 2024-06-11 09:49:15 |
合計ジャッジ時間 | 15,906 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 22 ms
7,424 KB |
testcase_13 | AC | 22 ms
7,424 KB |
testcase_14 | AC | 22 ms
7,296 KB |
testcase_15 | AC | 41 ms
12,800 KB |
testcase_16 | AC | 40 ms
12,800 KB |
testcase_17 | AC | 41 ms
12,800 KB |
testcase_18 | AC | 60 ms
18,304 KB |
testcase_19 | AC | 59 ms
18,432 KB |
testcase_20 | AC | 60 ms
18,304 KB |
testcase_21 | AC | 59 ms
18,304 KB |
testcase_22 | WA | - |
ソースコード
fn read<T: std::str::FromStr>() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); s.trim().parse().ok().unwrap() } fn read_line<T: std::str::FromStr>() -> Vec<T> { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); line.split_whitespace() .map(|x| x.parse().ok().unwrap()) .collect() } fn main() { let n_m: Vec<i32> = read_line(); let mut card_counter = vec![0; n_m[0] as usize]; let mut draw_counter = vec![0; n_m[0] as usize]; let mut cur = 0; let mut stack_cnt = 0; let mut direct = 1; let mut actions: Vec<String> = Vec::new(); for i in 0..n_m[1] { let action: String = read(); if i > 0 && (actions[(i - 1) as usize] == "drawtwo" || actions[(i - 1) as usize] == "drawfour") && action != actions[(i - 1) as usize] { draw_counter[cur as usize] += stack_cnt; cur = (cur + direct + n_m[0]) % n_m[0]; stack_cnt = 0; } card_counter[cur as usize] += 1; if action == "number" { // NOOP } else if action == "drawtwo" { stack_cnt += 2; } else if action == "drawfour" { stack_cnt += 4; } else if action == "skip" { cur = (cur + direct + n_m[0]) % n_m[0]; } else if action == "reverse" { direct *= -1; } if i < n_m[1] - 1 { cur = (cur + direct + n_m[0]) % n_m[0]; actions.push(action); } } println!("{} {}", cur + 1, card_counter[cur as usize] - draw_counter[cur as usize]); }