Other articles


  1. 代码片段

    Rust

    Read

    use std::{collections::VecDeque, io};
    static mut V: VecDeque<i8> = VecDeque::<i8>::new();
    macro_rules! read {
        ($x:expr) => {
            unsafe {
                if V.is_empty() {
                    let mut buf = String::new();
                    io::stdin().read_line(&mut buf).unwrap();
                    buf.split_whitespace()
                        .for_each(|x| V.push_back(x.parse().unwrap()));
                }
                $x = V.pop_front().unwrap().into()
            }
        };
    }
    

    Quine

    fn …
    read more
  2. 记我的13岁生日

    今天是我的13岁生日,此时此刻,我坐在GW机房里,索然无味又无比彷徨。

    先来讲一讲我目睹的 GW 信息学竞赛发展史。

    第零篇章 - TYOI 的 chxulong

    TYOI,顾 …

    read more

links

social