-
讨论 (0)
这个用户还没有发布过讨论 -
贡献 (0)
啊哦,这个用户还没贡献过题目和题解~ -
递交 (7)
最近递交
状态 题目 递交者 时间 内存 语言 递交时间 P1144 小胖守皇宫 文天玺 (waylish) 8ms 360.0 KiB C++ 2019-07-15 10:42:56 P1000 A+B Problem 文天玺 (waylish) 18ms 684.0 KiB C++ 2019-02-12 11:21:19
个人简介
Simplicity is the ultimate of sophistication.!
简约是精致的终极选择。
#include <bits/stdc++.h>
using namespace std;
template <typename T>inline void read(T &x)
{
x=0;int f=1;char c=getchar();
for(;c<'0'||c>'9';c=getchar())if(c=='-')f=-1;
for(;c>='0'&&c<='9';c=getchar())x=(x<<3)+(x<<1)+(c^48);
x*=f;
}
template <typename T>inline void print(T x)
{
if(x<0) x=-x,putchar('-');
if(x>9) print(x/10);
putchar(x%10+'0');
}
int main()
{
puts("Hey Future!");
return 0;
}