| import math | |
| n = int(input()) | |
| i=1 | |
| while i<=n: | |
| x = int(input()) | |
| d = (-1 + math.sqrt(1 + 8 * x)) / 2 | |
| print(int(d)) | |
| i = i+1 |
Subscribe to:
Post Comments (Atom)
-
Problem Explanation Category: Easy Type: String Ad Hoc This is simple string ad hoc problem. You just need to find out a substring of...
-
/*** Md. Namzul Hasan Shahjalal University of Science & Technology,Sylhet. hasan08sust@gmail.com ***/ #include<bits/stdc++.h...
-
Though it is simple but has a twist when any dimension of the board is 2.Let a & b be the dimension of the board. It will be better if...
No comments:
Post a Comment