結果

問題 No.1700 floor X
ユーザー harapeco
提出日時 2022-03-16 14:05:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 76,640 KB
最終ジャッジ日時 2024-09-24 12:34:05
合計ジャッジ時間 7,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 41 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

T = int(input())
for _ in range(T):
    N = int(input())
    print(int(sqrt(N)))
0