結果
問題 | No.1622 三角形の面積 |
ユーザー | Amit Vishwakarma |
提出日時 | 2021-07-23 21:45:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,604 bytes |
コンパイル時間 | 2,306 ms |
コンパイル使用メモリ | 180,428 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 17:23:49 |
合計ジャッジ時間 | 2,694 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,948 KB |
testcase_04 | AC | 1 ms
6,940 KB |
ソースコード
#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();cout<<ln; } return 0; }