結果
| 問題 | No.1622 三角形の面積 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-12 14:55:22 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 101 bytes |
| 記録 | |
| コンパイル時間 | 367 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 52,736 KB |
| 最終ジャッジ日時 | 2026-04-18 02:06:22 |
| 合計ジャッジ時間 | 1,206 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 4 |
ソースコード
from math import sqrt
t=int(input())
for i in range(t):
r=int(input())
print(3*sqrt(3)*r*r/4)