結果

問題 No.1700 floor X
ユーザー tobusakanatobusakana
提出日時 2022-12-12 01:02:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-15 20:00:19
合計ジャッジ時間 12,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 92 ms
71,168 KB
testcase_02 AC 92 ms
71,296 KB
testcase_03 AC 88 ms
70,144 KB
testcase_04 AC 90 ms
70,656 KB
testcase_05 AC 87 ms
70,272 KB
testcase_06 AC 92 ms
71,424 KB
testcase_07 AC 91 ms
71,424 KB
testcase_08 AC 88 ms
70,016 KB
testcase_09 AC 88 ms
70,784 KB
testcase_10 AC 91 ms
71,424 KB
testcase_11 AC 91 ms
72,320 KB
testcase_12 AC 90 ms
71,936 KB
testcase_13 AC 89 ms
70,272 KB
testcase_14 AC 91 ms
71,424 KB
testcase_15 AC 89 ms
70,400 KB
testcase_16 AC 91 ms
71,296 KB
testcase_17 AC 89 ms
69,888 KB
testcase_18 AC 89 ms
70,400 KB
testcase_19 AC 91 ms
70,912 KB
testcase_20 AC 89 ms
70,016 KB
testcase_21 AC 375 ms
76,288 KB
testcase_22 AC 376 ms
76,032 KB
testcase_23 AC 379 ms
75,776 KB
testcase_24 AC 382 ms
76,416 KB
testcase_25 AC 379 ms
76,032 KB
testcase_26 AC 375 ms
76,544 KB
testcase_27 AC 374 ms
76,032 KB
testcase_28 AC 378 ms
75,776 KB
testcase_29 AC 377 ms
76,288 KB
testcase_30 AC 375 ms
76,160 KB
testcase_31 AC 380 ms
76,032 KB
testcase_32 AC 373 ms
76,032 KB
testcase_33 AC 376 ms
76,160 KB
testcase_34 AC 375 ms
76,544 KB
testcase_35 AC 376 ms
76,032 KB
testcase_36 AC 373 ms
76,416 KB
testcase_37 AC 375 ms
76,032 KB
testcase_38 AC 377 ms
75,776 KB
testcase_39 AC 382 ms
75,904 KB
testcase_40 AC 381 ms
76,160 KB
testcase_41 AC 398 ms
76,032 KB
testcase_42 AC 40 ms
51,712 KB
testcase_43 AC 392 ms
76,288 KB
testcase_44 AC 394 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
def is_lower(x, N):
  if x ** 2 <= N:
    return True
  return False

for _ in range(T):
  N = int(input())
  ok = -1
  ng = N + 1
  while abs(ok - ng) > 1:
    mid = abs(ok + ng) // 2
    if is_lower(mid, N):
      ok = mid
    else:
      ng = mid
  print(ok)
  
  
0