結果
問題 | No.1622 三角形の面積 |
ユーザー | LV3zJigVW57oPGy |
提出日時 | 2022-08-18 14:11:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 218 bytes |
コンパイル時間 | 1,221 ms |
コンパイル使用メモリ | 158,336 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 04:48:37 |
合計ジャッジ時間 | 1,705 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int a; cin >> a; for(int i=0; i<a; i++){ double b; cin >> b; cout << (b*2*0.93969262078)*(b*0.34202014332*3)*0.5 << endl; } }