結果
| 問題 |
No.1551 誕生日の三角形
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2025-05-28 02:33:35 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 36 ms / 1,000 ms |
| コード長 | 96 bytes |
| コンパイル時間 | 485 ms |
| コンパイル使用メモリ | 82,248 KB |
| 実行使用メモリ | 53,800 KB |
| 最終ジャッジ日時 | 2025-05-28 02:33:37 |
| 合計ジャッジ時間 | 2,127 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
from math import sin, pi L = int(input()) x = L / 3 ans = 0.5 * x * x * sin(pi / 3) print(ans)
norioc