| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 9751 | 杨晓铮 | 小鱼的航程(改进版) | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 186 | 2020-11-18 18:54:48 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,n,ans; cin>>a>>b>>n; for(int i=1;i<=n;i++){ a*=10; ans=a/b; a%=b; } printf("%d",ans); return 0; }