結果
| 問題 | No.1622 三角形の面積 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-08-28 18:39:22 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 137 bytes | 
| コンパイル時間 | 91 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 11,008 KB | 
| 最終ジャッジ日時 | 2024-11-21 21:16:06 | 
| 合計ジャッジ時間 | 675 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 1 | 
| other | WA * 4 | 
ソースコード
import math
for _ in range(int(input())):
    R=input()
    r=float(R)
    hen=r*1.5*2/math.cos(math.radians(30))
    print(hen*r*1.5/2)
            
            
            
        