結果
| 問題 |
No.1700 floor X
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-06-29 02:54:14 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 77 ms / 2,000 ms |
| コード長 | 217 bytes |
| コンパイル時間 | 484 ms |
| コンパイル使用メモリ | 82,432 KB |
| 実行使用メモリ | 76,636 KB |
| 最終ジャッジ日時 | 2024-11-21 22:06:47 |
| 合計ジャッジ時間 | 6,045 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 44 |
ソースコード
import sys
import math
input = lambda: sys.stdin.readline().rstrip()
# ----------------------- #
def main():
n = int(input())
return math.isqrt(n)
print('\n'.join(str(main()) for _ in range(int(input()))))