結果

問題 No.1700 floor X
ユーザー kohei2019
提出日時 2023-06-04 16:50:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 88 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,944 KB
最終ジャッジ日時 2024-12-29 03:36:15
合計ジャッジ時間 6,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 41 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
    N = int(input())
    print(-int(-(N**(1/2)//1)))
0