結果

問題 No.1551 誕生日の三角形
ユーザー neterukunneterukun
提出日時 2021-06-18 21:22:53
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 59 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 87,540 KB
実行使用メモリ 71,820 KB
最終ジャッジ日時 2023-09-04 22:21:28
合計ジャッジ時間 1,999 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,712 KB
testcase_01 AC 75 ms
71,668 KB
testcase_02 AC 77 ms
71,672 KB
testcase_03 AC 76 ms
71,752 KB
testcase_04 AC 75 ms
71,340 KB
testcase_05 AC 76 ms
71,484 KB
testcase_06 AC 76 ms
71,660 KB
testcase_07 AC 76 ms
71,820 KB
testcase_08 AC 76 ms
71,544 KB
testcase_09 AC 76 ms
71,340 KB
testcase_10 AC 76 ms
71,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())


l = l / 3
print(3 ** 0.5 / 4 * (l ** 2))
0