結果

問題 No.1700 floor X
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-09 10:31:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 71 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 86,920 KB
実行使用メモリ 77,864 KB
最終ジャッジ日時 2023-10-01 05:39:16
合計ジャッジ時間 8,344 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,584 KB
testcase_01 AC 143 ms
77,632 KB
testcase_02 AC 124 ms
77,520 KB
testcase_03 AC 124 ms
77,864 KB
testcase_04 AC 125 ms
77,536 KB
testcase_05 AC 123 ms
77,824 KB
testcase_06 AC 123 ms
77,536 KB
testcase_07 AC 124 ms
77,604 KB
testcase_08 AC 123 ms
77,396 KB
testcase_09 AC 126 ms
77,856 KB
testcase_10 AC 126 ms
77,812 KB
testcase_11 AC 125 ms
77,504 KB
testcase_12 AC 123 ms
77,552 KB
testcase_13 AC 126 ms
77,772 KB
testcase_14 AC 126 ms
77,672 KB
testcase_15 AC 125 ms
77,628 KB
testcase_16 AC 127 ms
77,708 KB
testcase_17 AC 126 ms
77,504 KB
testcase_18 AC 124 ms
77,624 KB
testcase_19 AC 125 ms
77,532 KB
testcase_20 AC 125 ms
77,692 KB
testcase_21 AC 126 ms
77,320 KB
testcase_22 AC 127 ms
77,500 KB
testcase_23 AC 127 ms
77,556 KB
testcase_24 AC 126 ms
77,584 KB
testcase_25 AC 125 ms
77,476 KB
testcase_26 AC 125 ms
77,552 KB
testcase_27 AC 125 ms
77,756 KB
testcase_28 AC 125 ms
77,512 KB
testcase_29 AC 124 ms
77,508 KB
testcase_30 AC 125 ms
77,500 KB
testcase_31 AC 125 ms
77,608 KB
testcase_32 AC 125 ms
77,692 KB
testcase_33 AC 125 ms
77,632 KB
testcase_34 AC 127 ms
77,508 KB
testcase_35 AC 127 ms
77,344 KB
testcase_36 AC 126 ms
77,388 KB
testcase_37 AC 128 ms
77,496 KB
testcase_38 AC 128 ms
77,608 KB
testcase_39 AC 126 ms
77,604 KB
testcase_40 AC 126 ms
77,512 KB
testcase_41 AC 126 ms
77,592 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for _ in range(n):
    print(int(int(input()) ** 0.5))
0