# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
337847 | 2020-12-22T03:15:26 Z | beksultan04 | 홀-짝 수열 (IZhO11_oddeven) | Python 3 | 16 ms | 2924 KB |
a = (input()) a = int(a) l = 1; r = 1e50; while (r-l>1): m = int((l+r)//2) x = int((l+r)//2) x = int((x*(x+1))//2) if int(x) >= int(a): r = m else: l = m x = int((r*(r+1))//2) if x >= a: l = r c = l*l cnt = l*(l+1)//2 c -= (cnt-a)*2 print (c)
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 16 ms | 2924 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |