-
个人简介
Piaoztsdy (pztsdy/pztsdy2023)
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.\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ }}$
$$\color{#dedede}\boxed{\color{black}\text{ 此人太菜了,严重拉低 SCG3 平均水平~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}$$$$\small\color{#0e90d2}\text{取消~~~~~~~~~~~~~~~~~~~~~~~~}\color{#dedede}\text{|}\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