Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Pierwiastkowanie
Language:
Ada
Assembly
Bash
C#
C++ (gcc)
C++ (clang)
C++ (vc++)
C (gcc)
C (clang)
C (vc)
Client Side
Clojure
Common Lisp
D
Elixir
Erlang
F#
Fortran
Go
Haskell
Java
Javascript
Kotlin
Lua
MySql
Node.js
Ocaml
Octave
Objective-C
Oracle
Pascal
Perl
Php
PostgreSQL
Prolog
Python
Python 3
R
Rust
Ruby
Scala
Scheme
Sql Server
Swift
Tcl
Visual Basic
Layout:
Vertical
Horizontal
#Pierwiastkowanie def _pierwiastek(pod, stopien): if pod in {0, 1}: return pod, pod przedzial = [0, 1] if pod<1 else [1, pod] while True: srednia = sum(przedzial)/2 srednia_stopien = srednia**stopien if srednia_stopien == pod: return srednia, srednia kraniec = srednia_stopien > pod if srednia == przedzial[kraniec]: return przedzial przedzial[kraniec] = srednia from numbers import Integral def pierwiastek(pod, stopien=2, rezultat=0): if not isinstance(stopien, Integral): raise TypeError('stopien musi być liczbą całkowitą') if stopien < 2: raise ArithmeticError('stopien musi być nie mniejszy niż 2') if pod >= 0: return _pierwiastek(pod, stopien)[rezultat] else: return _pierwiastek(-pod, stopien)[rezultat] * (-1 if stopien % 2 else 1j) from ast import literal_eval while True: try: print(pierwiastek(*literal_eval(input()))) except EOFError: break except Exception as e: print(type(e), e)
[1] [0, 3] [-8, 3] [100] [-2]
[
-
]
Show input
Absolute running time: 0.14 sec, cpu time: 0.02 sec, memory peak: 6 Mb, absolute service time: 0.15 sec
edit mode
|
history
|
discussion