結果
| 問題 |
No.2971 無理積分
|
| コンテスト | |
| ユーザー |
lignan
|
| 提出日時 | 2024-12-19 12:08:28 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 113 bytes |
| コンパイル時間 | 506 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 24,520 KB |
| 最終ジャッジ日時 | 2024-12-19 12:09:51 |
| 合計ジャッジ時間 | 80,573 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 36 |
ソースコード
from math import sqrt
N=int(input())
n=10**7
ans=0
for i in range(n):
ans+=sqrt((i/n)**3+N*N*N)/n
print(ans)
lignan