結果

問題 No.1622 三角形の面積
ユーザー hir355hir355
提出日時 2021-07-23 21:22:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 87,672 KB
実行使用メモリ 71,828 KB
最終ジャッジ日時 2023-09-25 21:03:45
合計ジャッジ時間 1,274 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,676 KB
testcase_01 AC 69 ms
71,724 KB
testcase_02 AC 70 ms
71,684 KB
testcase_03 AC 71 ms
71,828 KB
testcase_04 AC 71 ms
71,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    r = int(input())
    print(r ** 2 * 3 ** 1.5 / 4)
0