結果

問題 No.1622 三角形の面積
ユーザー KazunKazun
提出日時 2021-08-07 01:46:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 91 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 53,268 KB
最終ジャッジ日時 2024-09-17 05:55:32
合計ジャッジ時間 1,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,112 KB
testcase_01 AC 36 ms
52,820 KB
testcase_02 AC 35 ms
53,268 KB
testcase_03 AC 35 ms
52,364 KB
testcase_04 AC 34 ms
53,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())

S=1.299038105676657
for _ in range(T):
    R=int(input())
    print(R*R*S)
0