結果

問題 No.1700 floor X
ユーザー ShirotsumeShirotsume
提出日時 2021-10-08 22:51:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 87,824 KB
実行使用メモリ 78,256 KB
最終ジャッジ日時 2023-09-30 12:00:28
合計ジャッジ時間 7,704 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,768 KB
testcase_01 AC 125 ms
78,084 KB
testcase_02 AC 126 ms
77,984 KB
testcase_03 AC 131 ms
77,792 KB
testcase_04 AC 125 ms
77,760 KB
testcase_05 AC 125 ms
77,900 KB
testcase_06 AC 123 ms
78,132 KB
testcase_07 AC 125 ms
78,080 KB
testcase_08 AC 125 ms
77,864 KB
testcase_09 AC 122 ms
77,968 KB
testcase_10 AC 125 ms
77,796 KB
testcase_11 AC 125 ms
77,948 KB
testcase_12 AC 126 ms
78,072 KB
testcase_13 AC 127 ms
77,964 KB
testcase_14 AC 126 ms
78,084 KB
testcase_15 AC 126 ms
77,796 KB
testcase_16 AC 125 ms
77,828 KB
testcase_17 AC 125 ms
77,928 KB
testcase_18 AC 127 ms
78,076 KB
testcase_19 AC 125 ms
77,756 KB
testcase_20 AC 125 ms
78,224 KB
testcase_21 AC 127 ms
78,212 KB
testcase_22 AC 127 ms
78,060 KB
testcase_23 AC 128 ms
78,232 KB
testcase_24 AC 125 ms
78,216 KB
testcase_25 AC 125 ms
77,960 KB
testcase_26 AC 129 ms
78,084 KB
testcase_27 AC 130 ms
77,928 KB
testcase_28 AC 125 ms
77,828 KB
testcase_29 AC 127 ms
77,932 KB
testcase_30 AC 127 ms
77,840 KB
testcase_31 AC 126 ms
77,932 KB
testcase_32 AC 131 ms
78,192 KB
testcase_33 AC 124 ms
78,012 KB
testcase_34 AC 130 ms
78,072 KB
testcase_35 AC 125 ms
78,160 KB
testcase_36 AC 127 ms
78,160 KB
testcase_37 AC 128 ms
77,760 KB
testcase_38 AC 125 ms
78,188 KB
testcase_39 AC 132 ms
78,136 KB
testcase_40 AC 126 ms
77,760 KB
testcase_41 AC 128 ms
78,212 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def solve(n):
    print(math.floor(pow(n, 0.5) + 10 ** (-10)))


t = int(input())

for _ in range(t):
    solve(int(input()))
0