結果

問題 No.2971 無理積分
ユーザー Yukino DX.Yukino DX.
提出日時 2024-12-17 23:00:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 944 ms / 1,000 ms
コード長 381 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 63,136 KB
最終ジャッジ日時 2024-12-17 23:01:19
合計ジャッジ時間 37,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 941 ms
62,564 KB
testcase_01 AC 942 ms
60,904 KB
testcase_02 AC 941 ms
62,032 KB
testcase_03 AC 941 ms
61,988 KB
testcase_04 AC 942 ms
62,252 KB
testcase_05 AC 942 ms
61,324 KB
testcase_06 AC 941 ms
61,360 KB
testcase_07 AC 941 ms
62,160 KB
testcase_08 AC 942 ms
61,640 KB
testcase_09 AC 942 ms
62,448 KB
testcase_10 AC 941 ms
61,136 KB
testcase_11 AC 942 ms
62,892 KB
testcase_12 AC 944 ms
61,692 KB
testcase_13 AC 943 ms
62,568 KB
testcase_14 AC 943 ms
61,736 KB
testcase_15 AC 942 ms
61,328 KB
testcase_16 AC 943 ms
61,252 KB
testcase_17 AC 944 ms
61,624 KB
testcase_18 AC 942 ms
61,612 KB
testcase_19 AC 943 ms
62,392 KB
testcase_20 AC 943 ms
61,592 KB
testcase_21 AC 942 ms
61,188 KB
testcase_22 AC 942 ms
61,780 KB
testcase_23 AC 941 ms
61,964 KB
testcase_24 AC 942 ms
62,024 KB
testcase_25 AC 942 ms
61,672 KB
testcase_26 AC 941 ms
61,092 KB
testcase_27 AC 943 ms
61,484 KB
testcase_28 AC 944 ms
61,536 KB
testcase_29 AC 943 ms
61,000 KB
testcase_30 AC 943 ms
61,340 KB
testcase_31 AC 941 ms
60,932 KB
testcase_32 AC 943 ms
61,168 KB
testcase_33 AC 942 ms
61,972 KB
testcase_34 AC 941 ms
63,136 KB
testcase_35 AC 942 ms
61,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
import random
from math import sqrt

def f(x, n):
    return sqrt(x * x * x + n * n * n)


def main():
    n = int(input())

    start = time.time()
    ans, cnt_loop = 0, 0

    while (time.time() - start) < 0.9:
        x = random.uniform(0, 1)
        ans += f(x, n)
        cnt_loop += 1

    ans /= cnt_loop

    print(ans)


if __name__ == "__main__":
    main()
0