| Task: | Lehmät | 
| Sender: | ToVoid | 
| Submission time: | 2022-11-05 21:09:05 +0200 | 
| Language: | Rust | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | WRONG ANSWER | 0 | 
| #2 | WRONG ANSWER | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #2 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #3 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #4 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #5 | WRONG ANSWER | 0.00 s | 1, 2 | details | 
| #6 | WRONG ANSWER | 0.00 s | 2 | details | 
| #7 | WRONG ANSWER | 0.00 s | 2 | details | 
| #8 | WRONG ANSWER | 0.00 s | 2 | details | 
| #9 | WRONG ANSWER | 0.00 s | 2 | details | 
Compiler report
warning: unused variable: `aidan_yla_kulma` --> input/code.rs:47:9 | 47 | let aidan_yla_kulma: (usize, usize) = aidan_yla_kulma(n, m, &uolevin_tila); | ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_aidan_yla_kulma` | = note: `#[warn(unused_variables)]` on by default warning: unused variable: `aidan_ala_kulma` --> input/code.rs:48:9 | 48 | let aidan_ala_kulma: (usize, usize) = aidan_ala_kulma(n, m, &uolevin_tila); | ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_aidan_ala_kulma` warning: 2 warnings emitted
Code
use std::io::{BufRead, BufReader};
fn aidan_yla_kulma(n: usize, m: usize, arr: &[[char; 100]; 100]) -> (usize, usize) {
    for i in 0..n {
        for j in 0..m {
            if '*' == arr[i][j] {
                return (i, j);
            }
        }
    }
    return (0, 0);
}
fn aidan_ala_kulma(n: usize, m: usize, arr: &[[char; 100]; 100]) -> (usize, usize) {
    for i in (0..n).rev() {
        for j in (0..m).rev() {
            if '*' == arr[i][j] {
                return (i, j);
            }
        }
    }
    return (0, 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(); // korkeus
    let m: usize = split.next().unwrap().parse().unwrap(); // leveys
    let mut uolevin_tila: [[char; 100]; 100] = [['.'; 100]; 100];
    for i in 0..n { // koko rivien lukeminen
        input.read_line(&mut line).unwrap();
        let mut chars = line.as_str().chars();
        for j in 0..m { // yhden merkin lukeminen
            uolevin_tila[i][j] = chars.next().unwrap();
        }
    }
    
    let aidan_yla_kulma: (usize, usize) = aidan_yla_kulma(n, m, &uolevin_tila);
    let aidan_ala_kulma: (usize, usize) = aidan_ala_kulma(n, m, &uolevin_tila);
    // let mut lehmien_num = 0;
    // for i in (aidan_yla_kulma.0 + 1)..(aidan_ala_kulma.0) {
    //     for j in (aidan_yla_kulma.1 + 1)..(aidan_ala_kulma.1) {
    //         if '@' == uolevin_tila[i][j] {
    //             lehmien_num += 1;
    //         }
    //     }
    // }
    // println!("{}", lehmien_num);
}Test details
Test 1
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 3 3 *** *.* ***  | 
| correct output | 
|---|
| 0 | 
| user output | 
|---|
| (empty) | 
Test 2
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 3 3 *** *@* ***  | 
| correct output | 
|---|
| 1 | 
| user output | 
|---|
| (empty) | 
Test 3
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 5 10 ...@...... ..******.. @.*@@@@*.@ ..******.. ...  | 
| correct output | 
|---|
| 4 | 
| user output | 
|---|
| (empty) | 
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 10 10 @@...@.@@@ ..@@.@@..@ @.*******@ ..*@....*. ...  | 
| correct output | 
|---|
| 11 | 
| user output | 
|---|
| (empty) | 
Test 5
Group: 1, 2
Verdict: WRONG ANSWER
| input | 
|---|
| 10 10 ********** *@@@@@@@@* *@@@@@@@@* *@@@@@@@@* ...  | 
| correct output | 
|---|
| 64 | 
| user output | 
|---|
| (empty) | 
Test 6
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .........................@.......  | 
| correct output | 
|---|
| 60 | 
| user output | 
|---|
| (empty) | 
Test 7
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 ..@@..........@......@....@@.....  | 
| correct output | 
|---|
| 1507 | 
| user output | 
|---|
| (empty) | 
Test 8
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 .@..@@..@@.@..@..@..@@..@..@.....  | 
| correct output | 
|---|
| 3348 | 
| user output | 
|---|
| (empty) | 
Test 9
Group: 2
Verdict: WRONG ANSWER
| input | 
|---|
| 100 100 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...  | 
| correct output | 
|---|
| 7225 | 
| user output | 
|---|
| (empty) | 
