結果

問題 No.1551 誕生日の三角形
ユーザー first_vilfirst_vil
提出日時 2021-06-18 21:59:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 18 ms / 1,000 ms
コード長 70 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2023-09-04 23:03:31
合計ジャッジ時間 1,252 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,160 KB
testcase_01 AC 16 ms
8,092 KB
testcase_02 AC 16 ms
8,040 KB
testcase_03 AC 16 ms
8,168 KB
testcase_04 AC 16 ms
8,100 KB
testcase_05 AC 17 ms
8,160 KB
testcase_06 AC 15 ms
7,884 KB
testcase_07 AC 18 ms
8,184 KB
testcase_08 AC 16 ms
8,172 KB
testcase_09 AC 16 ms
8,100 KB
testcase_10 AC 15 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l=int(input())
s=l/2
from math import sqrt
print(sqrt(s*pow(s-l/3,3)))
0