結果

問題 No.2971 無理積分
ユーザー hiro1729hiro1729
提出日時 2024-08-08 15:09:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 770 ms / 1,000 ms
コード長 209 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-08-08 15:09:48
合計ジャッジ時間 28,647 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 770 ms
76,416 KB
testcase_01 AC 738 ms
76,416 KB
testcase_02 AC 732 ms
76,544 KB
testcase_03 AC 679 ms
76,160 KB
testcase_04 AC 706 ms
76,416 KB
testcase_05 AC 680 ms
76,416 KB
testcase_06 AC 710 ms
76,160 KB
testcase_07 AC 675 ms
76,032 KB
testcase_08 AC 704 ms
76,416 KB
testcase_09 AC 685 ms
76,416 KB
testcase_10 AC 676 ms
76,416 KB
testcase_11 AC 691 ms
76,544 KB
testcase_12 AC 712 ms
76,416 KB
testcase_13 AC 687 ms
76,416 KB
testcase_14 AC 678 ms
76,544 KB
testcase_15 AC 700 ms
76,288 KB
testcase_16 AC 692 ms
76,544 KB
testcase_17 AC 673 ms
76,672 KB
testcase_18 AC 716 ms
76,288 KB
testcase_19 AC 675 ms
76,416 KB
testcase_20 AC 705 ms
76,160 KB
testcase_21 AC 677 ms
76,672 KB
testcase_22 AC 697 ms
76,160 KB
testcase_23 AC 678 ms
76,672 KB
testcase_24 AC 705 ms
76,544 KB
testcase_25 AC 676 ms
76,544 KB
testcase_26 AC 702 ms
76,288 KB
testcase_27 AC 675 ms
76,416 KB
testcase_28 AC 709 ms
76,544 KB
testcase_29 AC 670 ms
76,416 KB
testcase_30 AC 707 ms
76,544 KB
testcase_31 AC 678 ms
76,416 KB
testcase_32 AC 676 ms
76,288 KB
testcase_33 AC 692 ms
76,416 KB
testcase_34 AC 688 ms
76,416 KB
testcase_35 AC 676 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

N = int(input())
M = N ** 1.5
ans = M

cnt = 5000000
ok = 0

for _ in range(cnt):
	x, y = random.random(), M + random.random()
	if y <= (x ** 3 + N ** 3) ** 0.5:
		ok += 1

print(ans + ok / cnt)
0