Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
23294 | Flora | 大象喝水 | C++ | Wrong Answer | 0 MS | 244 KB | 203 | 2023-07-23 20:52:16 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(200%a*b==0){ cout<<200/(a*b); } else{ cout<<200/(a*b)+1; } return 0; }