結果
| 問題 |
No.1700 floor X
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-09 09:53:00 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 81 ms / 2,000 ms |
| コード長 | 132 bytes |
| コンパイル時間 | 244 ms |
| コンパイル使用メモリ | 82,444 KB |
| 実行使用メモリ | 74,156 KB |
| 最終ジャッジ日時 | 2024-07-03 10:39:53 |
| 合計ジャッジ時間 | 4,811 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 44 |
ソースコード
t = int(input())
for _ in range(t):
n = int(input())
x = int(n ** 0.5) + 5
while x ** 2 > n:
x -= 1
print(x)