結果
問題 | No.1622 三角形の面積 |
ユーザー | ossa_2019 |
提出日時 | 2021-09-27 00:17:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 95 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 52,608 KB |
最終ジャッジ日時 | 2024-07-05 16:59:34 |
合計ジャッジ時間 | 697 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
r3 = 3**(1/2) for t in range(int(input())): rad = int(input()) print(((rad/2)**2)*r3*6)