69 条题解
-
-1
清华编程题👀️ 👀️
#include <cstdio> //不需要using namespace std inline int reader(){ //自定义输入函数 int it = 0 , chr = getchar(); //getchar()获取一个字符,以这个为原理自己写个输入 while('0' > chr || chr > '9') chr = getchar(); while('0' <= chr && chr <= '9') it = (it << 1) + (it << 3) + chr - '0' ,chr = getchar() ; return it ; } int main(){ printf("%s",(reader() + reader() > reader() ?"yes":"no")); //快 整 整 1 m s //直接用返回值操作就不用定义变量 //printf() 和 cout 差不多 , 用哪个随便 return 0 ; }
信息
- ID
- 30
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 5
- 标签
- 递交数
- 15550
- 已通过
- 6517
- 上传者