Result

WA

Duration

1096ms

Code [DL]

use std::io::*;fn main(){let mut a:[u8;9999]=[0;9999];stdin().read(&mut a);let mut i=51;while a[i-1]!=117{a[i]=a[i]|a[i-51]|a[i-1]&1;i+=1;}stdout().write(&a);}

stdin

                                               T  
                                                  
                                                  
                                                  
                                                  
                                                  
                                       K          

stdout

                                               T  
                                               t  
                                               t  
                                               t  
                                               t  
                                               t  
                                       k!!!!!!!u  

stderr

warning: unused `std::result::Result` that must be used
 --> /tmp/code.rs:1:55
  |
1 | use std::io::*;fn main(){let mut a:[u8;9999]=[0;9999];stdin().read(&mut a);let mut i=51;while a[i-1]!=117{a[i]=a[i]|a[i-51]|a[i-1]&1;i+=1;}stdout().write(&a);}
  |                                                       ^^^^^^^^^^^^^^^^^^^^^
  |
  = note: #[warn(unused_must_use)] on by default
  = note: this `Result` may be an `Err` variant, which should be handled

warning: unused `std::result::Result` that must be used
 --> /tmp/code.rs:1:140
  |
1 | use std::io::*;fn main(){let mut a:[u8;9999]=[0;9999];stdin().read(&mut a);let mut i=51;while a[i-1]!=117{a[i]=a[i]|a[i-51]|a[i-1]&1;i+=1;}stdout().write(&a);}
  |                                                                                                                                            ^^^^^^^^^^^^^^^^^^^
  |
  = note: this `Result` may be an `Err` variant, which should be handled

strace