結果
問題 | No.1622 三角形の面積 |
ユーザー |
|
提出日時 | 2021-08-05 01:44:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 512 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 54,272 KB |
最終ジャッジ日時 | 2024-09-16 15:13:52 |
合計ジャッジ時間 | 1,013 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 |
ソースコード
# __________________________PyMagic ;)______________________________ from collections import * from math import * from sys import * from bisect import * input=stdin.readline # __________________________Fast I/O :)_____________________________ def inp(): return map(int,input().split()) def print_l(a): return stdout.write(" ".join(map(str,a))+"\n") def print_s(a): return stdout.write(str(a)+"\n") # __________________________Finally...______________________________ for _ in range(int(input())): r=int(input()) k=sqrt(3) print(0.75*r*r*k)