結果
| 問題 | 
                            No.1700 floor X
                             | 
                    
| コンテスト | |
| ユーザー | 
                             azekura_program
                         | 
                    
| 提出日時 | 2021-10-08 22:46:10 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 129 bytes | 
| コンパイル時間 | 394 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 17,692 KB | 
| 最終ジャッジ日時 | 2024-07-23 05:52:31 | 
| 合計ジャッジ時間 | 7,576 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 20 TLE * 1 -- * 23 | 
ソースコード
N=int(input()) 
for i in range(N): 
  a=int(input())
  for j in range(10**10): 
    if j*j>a:
      print(j-1)
      break
      
            
            
            
        
            
azekura_program