結果

問題 No.2971 無理積分
ユーザー るこーそーるこーそー
提出日時 2024-12-02 19:31:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 75,732 KB
最終ジャッジ日時 2024-12-02 19:31:30
合計ジャッジ時間 6,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
75,308 KB
testcase_01 AC 134 ms
75,504 KB
testcase_02 AC 126 ms
75,596 KB
testcase_03 AC 155 ms
75,264 KB
testcase_04 AC 127 ms
75,464 KB
testcase_05 AC 129 ms
75,648 KB
testcase_06 AC 132 ms
75,520 KB
testcase_07 AC 132 ms
75,364 KB
testcase_08 AC 131 ms
75,176 KB
testcase_09 AC 125 ms
75,112 KB
testcase_10 AC 129 ms
75,108 KB
testcase_11 AC 153 ms
75,304 KB
testcase_12 AC 126 ms
75,184 KB
testcase_13 AC 127 ms
75,588 KB
testcase_14 AC 127 ms
75,332 KB
testcase_15 AC 129 ms
75,508 KB
testcase_16 AC 129 ms
75,404 KB
testcase_17 AC 128 ms
75,184 KB
testcase_18 AC 129 ms
75,392 KB
testcase_19 AC 158 ms
75,460 KB
testcase_20 AC 132 ms
75,732 KB
testcase_21 AC 130 ms
75,320 KB
testcase_22 AC 129 ms
75,268 KB
testcase_23 AC 132 ms
75,392 KB
testcase_24 AC 128 ms
75,392 KB
testcase_25 AC 125 ms
75,164 KB
testcase_26 AC 127 ms
75,264 KB
testcase_27 AC 156 ms
75,156 KB
testcase_28 AC 127 ms
75,376 KB
testcase_29 AC 127 ms
75,608 KB
testcase_30 AC 130 ms
75,172 KB
testcase_31 AC 137 ms
75,648 KB
testcase_32 AC 137 ms
75,360 KB
testcase_33 AC 138 ms
75,264 KB
testcase_34 AC 126 ms
75,244 KB
testcase_35 AC 151 ms
75,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=0.0
x=0
while x<=1:
    ans+=pow(pow(x,3)+pow(n,3),1/2)
    x+=0.000001
print(ans/1000000)
0