結果

問題 No.1622 三角形の面積
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-23 21:21:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 87,120 KB
実行使用メモリ 71,504 KB
最終ジャッジ日時 2023-09-25 21:03:08
合計ジャッジ時間 1,318 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,432 KB
testcase_01 AC 75 ms
71,504 KB
testcase_02 AC 76 ms
71,476 KB
testcase_03 AC 80 ms
71,232 KB
testcase_04 AC 75 ms
71,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
import math
for _ in range(t):
    r = int(input())
    ans = 3*math.sqrt(3)*(r**2)/4
    print(ans)
0