結果
| 問題 | No.1700 floor X |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-12-01 21:00:15 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 116 bytes |
| 記録 | |
| コンパイル時間 | 962 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-26 04:55:27 |
| 合計ジャッジ時間 | 7,155 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 44 |
ソースコード
import math
c = ''
for num in range(int(input())):
c += str(math.floor(math.sqrt(int(input())))) + '\n'
print(c)