結果

問題 No.1700 floor X
ユーザー U SU S
提出日時 2021-10-08 22:05:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 77,872 KB
最終ジャッジ日時 2024-07-03 10:27:59
合計ジャッジ時間 5,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,412 KB
testcase_01 AC 93 ms
77,356 KB
testcase_02 AC 94 ms
77,280 KB
testcase_03 AC 97 ms
77,520 KB
testcase_04 AC 94 ms
77,364 KB
testcase_05 AC 94 ms
77,404 KB
testcase_06 AC 96 ms
77,448 KB
testcase_07 AC 94 ms
77,248 KB
testcase_08 AC 93 ms
77,440 KB
testcase_09 AC 95 ms
77,172 KB
testcase_10 AC 95 ms
77,496 KB
testcase_11 AC 99 ms
77,456 KB
testcase_12 AC 96 ms
77,488 KB
testcase_13 AC 99 ms
77,620 KB
testcase_14 AC 92 ms
77,732 KB
testcase_15 AC 94 ms
77,560 KB
testcase_16 AC 95 ms
77,400 KB
testcase_17 AC 94 ms
77,660 KB
testcase_18 AC 95 ms
77,272 KB
testcase_19 AC 92 ms
77,668 KB
testcase_20 AC 93 ms
77,664 KB
testcase_21 AC 99 ms
77,484 KB
testcase_22 AC 100 ms
77,872 KB
testcase_23 AC 95 ms
77,808 KB
testcase_24 AC 96 ms
77,476 KB
testcase_25 AC 96 ms
77,748 KB
testcase_26 AC 101 ms
77,212 KB
testcase_27 AC 96 ms
77,280 KB
testcase_28 AC 96 ms
77,172 KB
testcase_29 AC 103 ms
77,308 KB
testcase_30 AC 97 ms
77,216 KB
testcase_31 AC 96 ms
77,448 KB
testcase_32 AC 94 ms
77,336 KB
testcase_33 AC 97 ms
77,412 KB
testcase_34 AC 96 ms
77,504 KB
testcase_35 AC 98 ms
77,288 KB
testcase_36 AC 96 ms
77,356 KB
testcase_37 AC 95 ms
77,300 KB
testcase_38 AC 99 ms
77,756 KB
testcase_39 AC 98 ms
77,604 KB
testcase_40 AC 99 ms
77,428 KB
testcase_41 AC 99 ms
77,396 KB
testcase_42 AC 48 ms
62,256 KB
testcase_43 AC 96 ms
77,340 KB
testcase_44 AC 97 ms
77,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#import sys
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
def mps(A):return [tuple(map(int, input().split())) for _ in range(A)]
import math
import bisect
import heapq
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1
inf = int(1e20)
mod = 998244353

t = int(input())
for _ in range(t):
    n = int(input())
    sn = int(n**0.5)
    snm = sn-1
    snp = sn+1
    s = [sn,snp]
    ans = snm
    for i in s:
        if i**2 <= n:
            ans = i
    print(ans)

0