| Task: | Robotti | 
| Sender: | Ez | 
| Submission time: | 2024-11-05 12:51:48 +0200 | 
| Language: | Rust (2021) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | RUNTIME ERROR | 0 | 
| #2 | RUNTIME ERROR | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2 | details | 
| #2 | ACCEPTED | 0.00 s | 1, 2 | details | 
| #3 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #4 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #5 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #6 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #7 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #8 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #9 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #10 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #11 | RUNTIME ERROR | 0.00 s | 1, 2 | details | 
| #12 | RUNTIME ERROR | 0.01 s | 2 | details | 
| #13 | RUNTIME ERROR | 0.00 s | 2 | details | 
| #14 | RUNTIME ERROR | 0.02 s | 2 | details | 
| #15 | RUNTIME ERROR | 0.00 s | 2 | details | 
| #16 | RUNTIME ERROR | 0.00 s | 2 | details | 
| #17 | ACCEPTED | 0.01 s | 2 | details | 
| #18 | RUNTIME ERROR | 0.18 s | 2 | details | 
| #19 | TIME LIMIT EXCEEDED | -- | 2 | details | 
| #20 | TIME LIMIT EXCEEDED | -- | 2 | details | 
| #21 | RUNTIME ERROR | 0.01 s | 2 | details | 
| #22 | RUNTIME ERROR | 0.01 s | 2 | details | 
| #23 | RUNTIME ERROR | 0.01 s | 2 | details | 
| #24 | RUNTIME ERROR | 0.01 s | 2 | details | 
Code
use std::{process::exit, io::{BufRead, BufReader}};
static mut COINS: i32 = 0;
static mut STEPS: usize = 0;
static mut V: bool = false;
static mut O: bool = false;
static mut VI: usize = 0;
static mut OI: usize = 0;
fn main() {
    let mut input = BufReader::new(std::io::stdin());
    let mut line = "".to_string();
    input.read_line(&mut line).unwrap();
    let mut split = line.split_whitespace();
    let n: usize = split.next().unwrap().parse().unwrap();
    let mut robot: usize = 0;
    line = "".to_string();    input.read_line(&mut line).unwrap();
    let mut t: Vec<char> = line.chars().filter(|a| *a=='*'||*a=='.'||*a=='R').collect();
    for i in t.iter().enumerate(){if *i.1=='R'{robot = i.0;}}
    unsafe{
        OI = t.iter().skip(robot).position(|c| *c=='*').unwrap_or(1000000);
        VI = t.iter().rev().skip(n-robot-1).position(|c| *c=='*').unwrap_or(1000000)
    }
    loop{
    unsafe{robot = step(n, &mut t,robot)}}
}
unsafe fn step(n: usize, t: &mut Vec<char>, r: usize) -> usize{
    t[r]='.';
    let oikea:usize = if O{1000000}else{t.iter().skip(r).position(|c| *c=='*').unwrap_or(10000000)};
    if oikea>1000000{O=true}
    let vasen:usize = if V{1000000}else{r - t.iter().rev().skip(n-r-1).position(|c| *c=='*').unwrap_or(10000000)};
    if vasen>1000000{V=true}
    if vasen == oikea ||( vasen>1000000 && oikea>1000000){print!("{} {}",STEPS, COINS); exit(0)}
    if vasen < oikea{ 
        t[vasen]='R';
        STEPS+=r-vasen;
        COINS +=1 ;
        vasen
    }else{
        t[r+oikea]='R';
        STEPS+=oikea;
        COINS +=1 ;
        r+oikea
    }
}Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
| input | 
|---|
| 1 R  | 
| correct output | 
|---|
| 0 0 | 
| user output | 
|---|
| 0 0 | 
Test 2
Group: 1, 2
Verdict: ACCEPTED
| input | 
|---|
| 10 ...R......  | 
| correct output | 
|---|
| 0 0 | 
| user output | 
|---|
| 0 0 | 
Test 3
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 10 **.R...***  | 
| correct output | 
|---|
| 12 5 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 10 but the index is 1000000', input/code.rs:34:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 4
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 10 ***R******  | 
| correct output | 
|---|
| 0 0 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 10 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 5
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 R................................  | 
| correct output | 
|---|
| 947 9 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 1000 but the index is 1000000', input/code.rs:34:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 6
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 .................................  | 
| correct output | 
|---|
| 886 9 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 1000 but the index is 1000113', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 7
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 .....*..*....**..**..*......*....  | 
| correct output | 
|---|
| 1287 400 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 1000 but the index is 1000005', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 8
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 ************.*****************...  | 
| correct output | 
|---|
| 0 0 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 1000 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 9
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 ******************************...  | 
| correct output | 
|---|
| 0 0 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 1000 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 10
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 R*****************************...  | 
| correct output | 
|---|
| 999 999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 1000 but the index is 1000000', input/code.rs:34:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 11
Group: 1, 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 ******************************...  | 
| correct output | 
|---|
| 999 999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 1000 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 12
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 10000 .......**........*...........*...  | 
| correct output | 
|---|
| 10971 999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 10000 but the index is 1000007', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 13
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 10000 *..*....*......*.....*..*........  | 
| correct output | 
|---|
| 9999 999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 10000 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 14
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 10000 *.*.*...**.*...*....**.**.**.....  | 
| correct output | 
|---|
| 18766 5000 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 10000 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 15
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 10000 R*****************************...  | 
| correct output | 
|---|
| 9999 9999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 10000 but the index is 1000000', input/code.rs:34:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 16
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 10000 ******************************...  | 
| correct output | 
|---|
| 9999 9999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 10000 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 17
Group: 2
Verdict: ACCEPTED
| input | 
|---|
| 200000 .................................  | 
| correct output | 
|---|
| 0 0 | 
| user output | 
|---|
| 0 0 | 
Test 18
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 200000 .................................  | 
| correct output | 
|---|
| 299934 10000 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 200000 but the index is 1000045', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 19
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input | 
|---|
| 200000 **.***....**..**.....***.*..*....  | 
| correct output | 
|---|
| 299998 100000 | 
| user output | 
|---|
| (empty) | 
Test 20
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input | 
|---|
| 200000 ******************************...  | 
| correct output | 
|---|
| 0 0 | 
| user output | 
|---|
| (empty) | 
Test 21
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 200000 R................................  | 
| correct output | 
|---|
| 133765 3 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 200000 but the index is 1000000', input/code.rs:34:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 22
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 200000 R................................  | 
| correct output | 
|---|
| 199982 5000 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 200000 but the index is 1000000', input/code.rs:34:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 23
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 200000 R*****************************...  | 
| correct output | 
|---|
| 199999 199999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 200000 but the index is 1000000', input/code.rs:34:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 24
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 200000 ******************************...  | 
| correct output | 
|---|
| 199999 199999 | 
| user output | 
|---|
| (empty) | 
Error:
thread 'main' panicked at 'index out of bounds: the len is 200000 but the index is 1000000', input/code.rs:39:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
