Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150040 黄俊仪 11大象喝水 C++ Accepted 1 MS 272 KB 221 2026-03-21 17:00:15

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main() { double h,r; cin>>h>>r; int t=3.14*r*r*h; if(20000%t==0){ cout<<20000/t; return 0; } if(20000%t!=0){ cout<<20000/t+1; return 0; } }