Compile Error
foo.c:1:9: fatal error: bits/stdc++.h: No such file or directory 1 | #include<bits/stdc++.h> | ^~~~~~~~~~~~~~~ compilation terminated.
[Hydro](https://hydro.ac)提供评测服务
代码
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N=1009;
string a;
ll b,cnt;
ll ans[N];
void input(){
cin>>a;
cin>>b;
}
void solve(){
for(int i=0;i<(int)a.size();i++){
cnt=cnt*10+a[i]-'0';
ans[i+1]=cnt/b;
cnt%=b;
}
bool flag=false;
for(int i=1;i<=(int)a.size();i++){
if(!flag&&ans[i]==0) continue;
else{
cout<<ans[i];
flag=true;
}
}
}
int main(){
input();
solve();
return 0;
}
信息
- 递交者
- 类型
- 自测
- 题目
- P1023 [7FOJ]高精度除法
- 语言
- C
- 递交时间
- 2023-08-05 22:27:39
- 评测时间
- 2023-08-05 22:27:39
- 评测机
- 分数
- 0
- 总耗时
- 0ms
- 峰值内存
- 0 Bytes