답안 #885962

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
885962 2023-12-11T08:52:32 Z karimov 홀-짝 수열 (IZhO11_oddeven) PyPy
0 / 100
20 ms 19516 KB
import math

n = int(input())

def odd_even(n):
  x = math.ceil((8 * n + 1) ** 0.5) // 2
  d = x & 1
  if d:
    x -= 1
    return (d ** 2 * 4 + 1) + (2 * (n - (x * (x + 1) // 2) - 1))
  else:
    x >>= 1
    return (d ** 2 * 4 + 4 * d + 2) + (2 * (n - (x * (x + 1) // 2) - 1))

result = odd_even(n)
print(int(result))
# 결과 실행 시간 메모리 Grader output
1 Runtime error 20 ms 19516 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -