結果

問題 No.1700 floor X
ユーザー AnkitAnkit
提出日時 2021-10-09 00:29:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 76,788 KB
最終ジャッジ日時 2024-07-03 10:37:52
合計ジャッジ時間 5,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,840 KB
testcase_01 AC 79 ms
73,396 KB
testcase_02 AC 79 ms
72,388 KB
testcase_03 AC 80 ms
72,468 KB
testcase_04 AC 84 ms
74,864 KB
testcase_05 AC 79 ms
73,252 KB
testcase_06 AC 90 ms
73,528 KB
testcase_07 AC 81 ms
73,544 KB
testcase_08 AC 82 ms
74,548 KB
testcase_09 AC 77 ms
72,328 KB
testcase_10 AC 81 ms
73,540 KB
testcase_11 AC 79 ms
72,168 KB
testcase_12 AC 83 ms
74,192 KB
testcase_13 AC 76 ms
72,976 KB
testcase_14 AC 78 ms
72,196 KB
testcase_15 AC 80 ms
73,600 KB
testcase_16 AC 80 ms
72,244 KB
testcase_17 AC 74 ms
72,364 KB
testcase_18 AC 80 ms
72,568 KB
testcase_19 AC 88 ms
73,700 KB
testcase_20 AC 75 ms
73,576 KB
testcase_21 AC 92 ms
76,036 KB
testcase_22 AC 91 ms
76,788 KB
testcase_23 AC 93 ms
76,168 KB
testcase_24 AC 92 ms
76,416 KB
testcase_25 AC 91 ms
76,376 KB
testcase_26 AC 93 ms
76,112 KB
testcase_27 AC 106 ms
76,408 KB
testcase_28 AC 96 ms
76,120 KB
testcase_29 AC 92 ms
76,176 KB
testcase_30 AC 94 ms
76,004 KB
testcase_31 AC 94 ms
76,284 KB
testcase_32 AC 100 ms
76,176 KB
testcase_33 AC 93 ms
76,204 KB
testcase_34 AC 91 ms
76,072 KB
testcase_35 AC 95 ms
76,176 KB
testcase_36 AC 98 ms
76,084 KB
testcase_37 AC 91 ms
76,168 KB
testcase_38 AC 91 ms
75,964 KB
testcase_39 AC 91 ms
76,236 KB
testcase_40 AC 92 ms
76,028 KB
testcase_41 AC 92 ms
76,288 KB
testcase_42 AC 35 ms
52,404 KB
testcase_43 AC 91 ms
76,020 KB
testcase_44 AC 102 ms
76,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for ti in range(t):
	n=int(input())
	
	r=0;
	high=n;
	low=1;
	
	if(n>1):
		high//=2;
		
		
	while(1):
		mid=low+high;
		mid//=2;
		
		if((mid*mid)==n):
			r=mid
			break;
			
		elif((mid*mid)<n and ((mid+1)*(mid+1))>n):
			r=mid;
			break;
			
		elif((mid*mid)>n):
			high=mid-1;
		else:
			low=mid+1 
	
	print(r)
	
	
0