結果
問題 | No.1319 最強とんがりコーン |
ユーザー | Kude |
提出日時 | 2020-12-16 13:30:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,025 bytes |
コンパイル時間 | 2,814 ms |
コンパイル使用メモリ | 215,596 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-20 04:55:07 |
合計ジャッジ時間 | 72,966 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1,024 ms
5,376 KB |
testcase_03 | AC | 1,103 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,017 ms
5,376 KB |
testcase_07 | AC | 1,065 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1,294 ms
5,376 KB |
testcase_11 | AC | 1,053 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1,064 ms
5,376 KB |
testcase_14 | AC | 1,155 ms
5,376 KB |
testcase_15 | AC | 1,046 ms
5,376 KB |
testcase_16 | AC | 1,146 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 1,125 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 1,019 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 1,060 ms
5,376 KB |
testcase_41 | AC | 1,280 ms
5,376 KB |
testcase_42 | AC | 1,175 ms
5,376 KB |
testcase_43 | AC | 1,252 ms
5,376 KB |
testcase_44 | AC | 1,176 ms
5,376 KB |
testcase_45 | AC | 1,326 ms
5,376 KB |
testcase_46 | WA | - |
testcase_47 | AC | 1,241 ms
5,376 KB |
testcase_48 | AC | 1,058 ms
5,376 KB |
testcase_49 | AC | 1,213 ms
5,376 KB |
testcase_50 | AC | 1,264 ms
5,376 KB |
testcase_51 | AC | 1,339 ms
5,376 KB |
testcase_52 | AC | 1,263 ms
5,376 KB |
testcase_53 | AC | 1,301 ms
5,376 KB |
testcase_54 | AC | 1,145 ms
5,376 KB |
testcase_55 | AC | 1,156 ms
5,376 KB |
testcase_56 | AC | 1,304 ms
5,376 KB |
testcase_57 | AC | 1,323 ms
5,376 KB |
testcase_58 | AC | 1,315 ms
5,376 KB |
testcase_59 | AC | 1,408 ms
5,376 KB |
testcase_60 | AC | 485 ms
5,376 KB |
testcase_61 | AC | 496 ms
5,376 KB |
testcase_62 | AC | 477 ms
5,376 KB |
testcase_63 | AC | 488 ms
5,376 KB |
testcase_64 | AC | 1,017 ms
5,376 KB |
testcase_65 | AC | 1,026 ms
5,376 KB |
testcase_66 | AC | 496 ms
5,376 KB |
testcase_67 | WA | - |
testcase_68 | WA | - |
testcase_69 | WA | - |
testcase_70 | AC | 1,229 ms
5,376 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n); ++i) #define rrep(i,n) for(int i = (n)-1; i >= 0; --i) #define chmax(a, b) a = max(a, b) #define chmin(a, b) a = min(a, b) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(12); double rmax, h, d; cin >> rmax >> h >> d; const double rmin = d / 2; constexpr int num = 5e7; const double rstep = (rmax - rmin) / num; double ans = 0; rep(i, num) { //for(double r = rmin; r < rmax; r += rstep) { const double r = rmin + rstep * i; double t = acos(d / 2 / r); //ans += r * r * (2 * t - sin(2 * t)); double x = 2 * t; double x2 = x * x; ans += r * r * (x2 * x / 6 * (1 - x2 / 20 * (1 - x2 / 42 * (1 - x2 / 72 * (1 - x2 / 110))))); } ans *= rstep * h / rmax; cout << ans << endl; } /* int main() { constexpr int attempts = 1e8; int hits = 0; double R, H, D; cin >> R >> H >> D; std::default_random_engine generator(std::chrono::system_clock::now().time_since_epoch().count()); //std::default_random_engine generator(0); // [-R, D + R] * [-R, R] * [0, H] std::uniform_real_distribution<> xdist(-R, D + R), ydist(-R, R), zdist(0, H); const double RH = R / H; for(int i = attempts; i; i--) { const double x = xdist(generator), y = ydist(generator), z = zdist(generator); const double dl = x * x + y * y, dr = (x - D) * (x - D) + y * y, r = z * RH; const double r2 = r * r; if (dl <= r2 && dr <= r2) hits++; } cout << fixed << setprecision(12); cout << double(D + 2 * R) * 2 * R * H * hits / attempts << endl; } */