• 个人简介

    Piaoztsdy (pztsdy/pztsdy2023)

    QQ: 2892449003\textrm{2892449003}
    Github: pztsdy\textrm{pztsdy}
    一本通: pztsdy2023\textrm{pztsdy2023}
    Luogu: piaoztsdy\textrm{piaoztsdy}
    Mail: piaoztsdy@outlook.com\textrm{piaoztsdy@outlook.com}


    Welcome to my website

    An interesting video

    临时主页:

    $\texttt{\colorbox{#ff0101}{Get Error:}\colorbox{#cccccc}{Cannot connect to PIAOZTSDY's server!}}$ $\texttt{\colorbox{#ddd}{Click \color{#3498db}{here} \color{#333}to find the help.\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ }}$


    反馈\bold{\text{反馈}} 如果你认为某个同学有问题,欢迎向 SCG3 反馈,以帮助更多的同学。\small{\text{如果你认为某个同学有问题,欢迎向 SCG3 反馈,以帮助更多的同学。}} 举报用户:piaoztsdy\colorbox{#3bb4f2}{\color{white}举报用户:piaoztsdy} 请具体说明理由,以增加反馈的可信度。\small{\text{请具体说明理由,以增加反馈的可信度。}} $$\color{#dedede}\boxed{\color{black}\text{ 此人太菜了,严重拉低 SCG3 平均水平~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}$$$$\small\color{#0e90d2}\text{取消~~~~~~~~~~~~~~~~~~~~~~~~}\color{#dedede}\text{|}\color{#0e90d2}\text{~~~~~~~~~~~~~~~~~~~~~~~~确定}$$
    提示\bold{\text{提示}} 举报成功,感谢您的反馈\small\text{举报成功,感谢您的反馈} 确定\small\color{#0e90d2}\text{确定}

    回到顶部

    快读快写

    #include <bits/stdc++.h>
    using namespace std;
    
    #ifdef __unix__
    #define getchar getchar_unlocked
    #define putchar putchar_unlocked
    #else
    #define getchar _getchar_nolock
    #define putchar _putchar_nolock
    #endif
    
    void faprint(long long n) {
    	if (n < 0) {
    		putchar('-');
    		n = -n;
    	}
    	if (n > 9) {
    		faprint(n / 10);
    	}
    	putchar(n % 10 + '0');
    }
    
    long long faread() {
    	long long x = 0;
    	bool f = true;
    	char ch = getchar();
    	
    	for (; ch < '0' || ch > '9'; ch = getchar()) {
    		if (ch == '-') f = false;
    	}
    	
    	for (; ch >= '0' && ch <= '9'; ch = getchar()) {
    		x = (x << 3) + (x << 1) + (ch ^ '0');
    	}
    	
    	return f ? x : -x;
    }
    
    
    
    int main() {
    	
    	return 0;
    }
    
  • 通过的题目

题目标签

System Test
2
Entry
1