답안 #319173

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
319173 2020-11-04T11:26:51 Z sofapuden 홀-짝 수열 (IZhO11_oddeven) Python 3
컴파일 오류
0 ms 0 KB
n = int(input())
l = 0
r = n
while(l < r):
	mid = (l+r+1)//2
	cur = (mid*(mid+1))//2
	if(cur > n):
		r = mid-1
	else:
		l = mid
	if((l*(l+1))//2 != n):
    	l+=1
print(2*n-l)

Compilation message

Sorry: TabError: inconsistent use of tabs and spaces in indentation (oddeven.py, line 12)