結果

問題 No.1700 floor X
ユーザー koba-e964koba-e964
提出日時 2021-10-08 22:50:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 124 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 86,832 KB
実行使用メモリ 77,608 KB
最終ジャッジ日時 2023-09-30 11:59:58
合計ジャッジ時間 8,082 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
70,820 KB
testcase_01 AC 126 ms
77,296 KB
testcase_02 AC 128 ms
77,120 KB
testcase_03 AC 129 ms
77,604 KB
testcase_04 AC 129 ms
77,380 KB
testcase_05 AC 129 ms
77,420 KB
testcase_06 AC 128 ms
77,196 KB
testcase_07 AC 130 ms
77,424 KB
testcase_08 AC 129 ms
76,904 KB
testcase_09 AC 130 ms
77,280 KB
testcase_10 AC 129 ms
77,604 KB
testcase_11 AC 129 ms
77,424 KB
testcase_12 AC 130 ms
77,160 KB
testcase_13 AC 129 ms
77,420 KB
testcase_14 AC 130 ms
77,156 KB
testcase_15 AC 130 ms
76,888 KB
testcase_16 AC 129 ms
77,424 KB
testcase_17 AC 128 ms
76,908 KB
testcase_18 AC 129 ms
77,276 KB
testcase_19 AC 127 ms
77,280 KB
testcase_20 AC 127 ms
76,908 KB
testcase_21 AC 129 ms
77,040 KB
testcase_22 AC 127 ms
77,604 KB
testcase_23 AC 128 ms
77,608 KB
testcase_24 AC 128 ms
77,428 KB
testcase_25 AC 126 ms
77,196 KB
testcase_26 AC 125 ms
77,344 KB
testcase_27 AC 127 ms
77,088 KB
testcase_28 AC 127 ms
77,188 KB
testcase_29 AC 129 ms
76,904 KB
testcase_30 AC 127 ms
77,288 KB
testcase_31 AC 130 ms
77,416 KB
testcase_32 AC 128 ms
77,052 KB
testcase_33 AC 129 ms
77,144 KB
testcase_34 AC 133 ms
77,172 KB
testcase_35 AC 129 ms
77,096 KB
testcase_36 AC 128 ms
76,896 KB
testcase_37 AC 129 ms
77,488 KB
testcase_38 AC 132 ms
77,340 KB
testcase_39 AC 129 ms
77,044 KB
testcase_40 AC 131 ms
76,924 KB
testcase_41 AC 129 ms
77,276 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import math

t = int(input())

for _ in range(t):
    n = int(input())
    print(int(math.sqrt(n)))
0