Submission #319150

#TimeUsernameProblemLanguageResultExecution timeMemory
319150sofapudenOdd-even (IZhO11_oddeven)Cpython 3
0 / 100
2085 ms2924 KiB
n = int(input())

x = 1
y = 1
while(y < n):
	x+=1
	y+=x
print(2*n-x)
#Verdict Execution timeMemoryGrader output
Fetching results...