結果
| 問題 | No.1700 floor X |
| コンテスト | |
| ユーザー |
azekura_program
|
| 提出日時 | 2021-10-08 22:46:10 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 129 bytes |
| 記録 | |
| コンパイル時間 | 634 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-04-03 12:54:02 |
| 合計ジャッジ時間 | 15,852 ms |
|
ジャッジサーバーID (参考情報) |
judge4_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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