1 Star 0 Fork 0

Zjl37/oiio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test_i2.cpp 443 Bytes
一键复制 编辑 原始数据 按行查看 历史
Zjl37 提交于 2021-08-26 20:37 . initial commit
#include "main.h"
#include <bits/stdc++.h>
using namespace std;
const string testName = "快读 (int, with return value)";
int a[N];
int read() {
char ch = getchar();
int ret = 0, f = 1;
while(!isdigit(ch)) {
if(ch == '-') f = -1;
ch = getchar();
}
while(isdigit(ch)) {
ret = ret*10+(ch & 15);
ch = getchar();
}
return f*ret;
}
void Work() {
freopen("in.txt", "r", stdin);
for(int i = 0; i < N; ++i) {
a[i] = read();
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Zjl37/oiio.git
git@gitee.com:Zjl37/oiio.git
Zjl37
oiio
oiio
master

搜索帮助