結果

問題 No.1551 誕生日の三角形
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:47:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 60 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-07-21 15:24:19
合計ジャッジ時間 1,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,060 KB
testcase_01 AC 35 ms
53,064 KB
testcase_02 AC 33 ms
53,208 KB
testcase_03 AC 35 ms
53,936 KB
testcase_04 AC 34 ms
52,160 KB
testcase_05 AC 35 ms
52,936 KB
testcase_06 AC 36 ms
52,908 KB
testcase_07 AC 35 ms
52,744 KB
testcase_08 AC 34 ms
52,756 KB
testcase_09 AC 37 ms
52,660 KB
testcase_10 AC 34 ms
52,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())
a = l / 3
print(a * a * (3 ** 0.5) / 2 / 2)
0