結果

問題 No.2971 無理積分
ユーザー lignanlignan
提出日時 2024-12-19 12:08:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 652 ms / 1,000 ms
コード長 113 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 76,204 KB
最終ジャッジ日時 2024-12-19 12:09:15
合計ジャッジ時間 25,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 626 ms
75,812 KB
testcase_01 AC 607 ms
75,824 KB
testcase_02 AC 627 ms
75,888 KB
testcase_03 AC 613 ms
75,968 KB
testcase_04 AC 618 ms
75,812 KB
testcase_05 AC 619 ms
75,820 KB
testcase_06 AC 626 ms
75,812 KB
testcase_07 AC 629 ms
75,816 KB
testcase_08 AC 631 ms
75,816 KB
testcase_09 AC 621 ms
76,204 KB
testcase_10 AC 628 ms
75,716 KB
testcase_11 AC 651 ms
75,744 KB
testcase_12 AC 620 ms
75,940 KB
testcase_13 AC 649 ms
75,764 KB
testcase_14 AC 620 ms
75,752 KB
testcase_15 AC 643 ms
75,680 KB
testcase_16 AC 611 ms
75,708 KB
testcase_17 AC 618 ms
76,100 KB
testcase_18 AC 616 ms
75,744 KB
testcase_19 AC 629 ms
75,968 KB
testcase_20 AC 611 ms
75,644 KB
testcase_21 AC 623 ms
75,640 KB
testcase_22 AC 608 ms
75,924 KB
testcase_23 AC 632 ms
75,812 KB
testcase_24 AC 628 ms
76,036 KB
testcase_25 AC 629 ms
75,752 KB
testcase_26 AC 615 ms
75,996 KB
testcase_27 AC 628 ms
75,872 KB
testcase_28 AC 606 ms
75,980 KB
testcase_29 AC 620 ms
76,108 KB
testcase_30 AC 603 ms
76,104 KB
testcase_31 AC 652 ms
75,636 KB
testcase_32 AC 603 ms
76,036 KB
testcase_33 AC 621 ms
75,648 KB
testcase_34 AC 620 ms
75,984 KB
testcase_35 AC 609 ms
75,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0