結果
問題 | No.1622 三角形の面積 |
ユーザー | Amit Vishwakarma |
提出日時 | 2021-07-23 21:44:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,595 bytes |
コンパイル時間 | 2,231 ms |
コンパイル使用メモリ | 179,700 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 17:21:59 |
合計ジャッジ時間 | 2,620 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,fma") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> #include <complex> #include <queue> #include <set> #include <unordered_set> #include <list> #include <chrono> #include <random> #include <iostream> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <map> #include <unordered_map> #include <stack> #include <iomanip> #include <fstream> using namespace std; typedef long long ll; typedef long double ld; typedef pair<int,int> p; typedef pair<ll,ll> pll; typedef pair<double,double> pdd; typedef vector<ll> vll; typedef vector<int> v; typedef vector<vector<int> > vv; typedef vector<vector<ll> > vvll; typedef vector<vector<pll> > vvpll; typedef vector<pll> vpll; typedef vector<p> vp; ll MOD = 998244353; double eps = 1e-12; #define forn(i,e) for(ll i = 0; i < e; i++) #define forsn(i,s,e) for(ll i = s; i < e; i++) #define rforn(i,s) for(ll i = s; i >= 0; i--) #define rforsn(i,s,e) for(ll i = s; i >= e; i--) #define ln "\n" #define dbg(x) cout<<#x<<" = "<<x<<ln #define mp make_pair #define pb push_back #define fi first #define se second #define INF 2e18 #define fast_cin() ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL) #define all(x) (x).begin(), (x).end() #define sz(x) ((ll)(x).size()) void solve(){ ll n;cin>>n; double ans= n*n*(3.0/4)*sqrt(3); cout<<fixed<<setprecision(15); cout<<ans; } int main() { fast_cin(); ll t; cin >> t; while(t--) { solve(); } return 0; }