結果
| 問題 | No.1622 三角形の面積 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2022-06-01 15:42:29 | 
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 124 bytes | 
| コンパイル時間 | 653 ms | 
| コンパイル使用メモリ | 78,100 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-09-21 01:31:37 | 
| 合計ジャッジ時間 | 1,094 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 4 | 
ソースコード
#include<iostream>
using namespace std;
int main(){
	int t,r;
	cin>>t;
	while(cin>>r)
		cout<<1.299038105676657*r*r<<endl;
}
            
            
            
        