結果

問題 No.1622 三角形の面積
ユーザー keijakkeijak
提出日時 2021-07-23 22:26:22
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 10,596 KB
実行使用メモリ 7,964 KB
最終ジャッジ日時 2023-09-25 22:36:57
合計ジャッジ時間 866 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,908 KB
testcase_01 AC 16 ms
7,872 KB
testcase_02 AC 16 ms
7,964 KB
testcase_03 AC 17 ms
7,916 KB
testcase_04 AC 16 ms
7,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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