CSES - Datatähti 2024 loppu - Results
Submission details
Task:Palindromi
Sender:EmuBird
Submission time:2024-01-20 13:28:56 +0200
Language:Rust
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.00 sdetails
#20.00 sdetails
#3ACCEPTED0.00 sdetails
#40.00 sdetails
#50.00 sdetails
#60.00 sdetails
#70.00 sdetails
#80.00 sdetails
#90.00 sdetails
#10ACCEPTED0.00 sdetails
#110.00 sdetails
#120.00 sdetails
#130.00 sdetails
#140.00 sdetails
#150.00 sdetails
#160.00 sdetails
#170.00 sdetails

Code

use std::{io::stdin};

fn main() {
    let stdin = stdin();
    let (n, k): (usize, usize) = {
        let mut s = String::new();
        stdin.read_line(&mut s).unwrap();
        let mut l = s.trim_end().split_whitespace();
        (l.next().unwrap().parse().unwrap(), l.next().unwrap().parse().unwrap())
    };

    let letters: Vec<char> = "abcdefghijklmnopqrstuvwxyz".chars().collect();

    let mut palindromi = String::with_capacity(n);

    for i in 0..(k/2) {
        palindromi.insert(i, letters[i]);
        palindromi.insert(palindromi.len() - 1 - i, letters[i]);
    }
    if k % 2 != 0 {
        palindromi.insert(k / 2 + 1, letters[k / 2 + 1]);
    }
    
    let mut fill = String::with_capacity(n - k);
    for i in 0..(n - k) {
        fill.push(letters[i]);
    }

    println!("{}", fill.clone() + &*palindromi + &*fill)
}

Test details

Test 1

Verdict:

input
1 1

correct output
a

user output
(empty)

Error:
thread 'main' panicked at 'assertion failed: self.is_char_boundary(idx)', /build/rustc-wAu...

Test 2

Verdict:

input
2 1

correct output
ab

user output
(empty)

Error:
thread 'main' panicked at 'assertion failed: self.is_char_boundary(idx)', /build/rustc-wAu...

Test 3

Verdict: ACCEPTED

input
2 2

correct output
aa

user output
aa

Test 4

Verdict:

input
3 1

correct output
abc

user output
(empty)

Error:
thread 'main' panicked at 'assertion failed: self.is_char_boundary(idx)', /build/rustc-wAu...

Test 5

Verdict:

input
3 2

correct output
aab

user output
aaaa

Test 6

Verdict:

input
3 3

correct output
aaa

user output
aac

Test 7

Verdict:

input
4 1

correct output
abca

user output
(empty)

Error:
thread 'main' panicked at 'assertion failed: self.is_char_boundary(idx)', /build/rustc-wAu...

Test 8

Verdict:

input
4 2

correct output
aabc

user output
abaaab

Test 9

Verdict:

input
4 3

correct output
aaab

user output
aaaca

Test 10

Verdict: ACCEPTED

input
4 4

correct output
aaaa

user output
abba

Test 11

Verdict:

input
100 1

correct output
abcabcabcabcabcabcabcabcabcabc...

user output
(empty)

Error:
thread 'main' panicked at 'assertion failed: self.is_char_boundary(idx)', /build/rustc-wAu...

Test 12

Verdict:

input
100 2

correct output
aabcabcabcabcabcabcabcabcabcab...

user output
(empty)

Error:
thread 'main' panicked at 'index out of bounds: the len is 26 but the index is 26', input/...

Test 13

Verdict:

input
100 5

correct output
aaaaabcabcabcabcabcabcabcabcab...

user output
(empty)

Error:
thread 'main' panicked at 'index out of bounds: the len is 26 but the index is 26', input/...

Test 14

Verdict:

input
100 10

correct output
aaaaaaaaaabcabcabcabcabcabcabc...

user output
(empty)

Error:
thread 'main' panicked at 'index out of bounds: the len is 26 but the index is 26', input/...

Test 15

Verdict:

input
100 50

correct output
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...

user output
(empty)

Error:
thread 'main' panicked at 'index out of bounds: the len is 26 but the index is 26', input/...

Test 16

Verdict:

input
100 90

correct output
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...

user output
(empty)

Error:
thread 'main' panicked at 'index out of bounds: the len is 26 but the index is 26', input/...

Test 17

Verdict:

input
100 100

correct output
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...

user output
(empty)

Error:
thread 'main' panicked at 'index out of bounds: the len is 26 but the index is 26', input/...