Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145024 刘宸宇 11大象喝水 C++ Accepted 1 MS 268 KB 158 2026-01-24 20:13:46

Tests(10/10):


Code:

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