結果
| 問題 | No.1700 floor X |
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2021-09-11 00:05:00 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 76 ms / 2,000 ms |
| コード長 | 85 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 85,260 KB |
| 実行使用メモリ | 81,596 KB |
| 最終ジャッジ日時 | 2026-04-03 12:25:16 |
| 合計ジャッジ時間 | 4,888 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 44 |
ソースコード
import math T=int(input()) for i in range(T): N=int(input()) print(math.isqrt(N))
harurun