結果
問題 |
No.1700 floor X
|
ユーザー |
|
提出日時 | 2022-02-12 22:35:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 158 bytes |
コンパイル時間 | 71 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-29 01:49:33 |
合計ジャッジ時間 | 2,339 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 44 |
ソースコード
import math T = int(input()) N2list = [] for i in range(T): N = int(input()) N2list += int(math.sqrt(N)) for j in range(T): print(N2list[j])