1 条题解
-
0陈烨鑫 (chenyexin) LV 10 @ 2023-4-23 19:39:20
#include<bits/stdc++.h> using namespace std; int main() { double n; double k; while(cin>>n>>k) { double y=1; double M=200; double All=n; while(true) { All+=n; M*=(1+k/100); if(All>M) { cout<<y+1<<endl; break; } if(y>19) { cout<<"Impossible"<<endl; break; } y++; } } return 0; }
- 1
信息
- ID
- 923
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 6
- 标签
- 递交数
- 66
- 已通过
- 19
- 上传者