結果

問題 No.1700 floor X
ユーザー shinichishinichi
提出日時 2021-10-16 14:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 76,732 KB
最終ジャッジ日時 2024-09-17 19:26:08
合計ジャッジ時間 6,293 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,552 KB
testcase_01 AC 77 ms
76,268 KB
testcase_02 AC 75 ms
76,264 KB
testcase_03 AC 77 ms
76,592 KB
testcase_04 AC 82 ms
76,304 KB
testcase_05 AC 88 ms
76,168 KB
testcase_06 AC 87 ms
76,324 KB
testcase_07 AC 86 ms
76,064 KB
testcase_08 AC 86 ms
76,068 KB
testcase_09 AC 87 ms
76,348 KB
testcase_10 AC 81 ms
76,048 KB
testcase_11 AC 76 ms
76,084 KB
testcase_12 AC 76 ms
76,096 KB
testcase_13 AC 79 ms
76,308 KB
testcase_14 AC 82 ms
76,056 KB
testcase_15 AC 78 ms
76,732 KB
testcase_16 AC 76 ms
76,200 KB
testcase_17 AC 78 ms
76,548 KB
testcase_18 AC 80 ms
76,028 KB
testcase_19 AC 74 ms
76,264 KB
testcase_20 AC 79 ms
76,712 KB
testcase_21 AC 89 ms
76,300 KB
testcase_22 AC 79 ms
76,328 KB
testcase_23 AC 78 ms
76,276 KB
testcase_24 AC 77 ms
76,732 KB
testcase_25 AC 80 ms
76,060 KB
testcase_26 AC 80 ms
76,268 KB
testcase_27 AC 77 ms
76,156 KB
testcase_28 AC 78 ms
76,204 KB
testcase_29 AC 77 ms
76,388 KB
testcase_30 AC 78 ms
76,612 KB
testcase_31 AC 90 ms
76,204 KB
testcase_32 AC 91 ms
76,120 KB
testcase_33 AC 82 ms
76,448 KB
testcase_34 AC 81 ms
76,104 KB
testcase_35 AC 81 ms
76,072 KB
testcase_36 AC 79 ms
76,028 KB
testcase_37 AC 79 ms
76,320 KB
testcase_38 AC 77 ms
76,248 KB
testcase_39 AC 81 ms
76,276 KB
testcase_40 AC 90 ms
76,696 KB
testcase_41 AC 83 ms
76,264 KB
testcase_42 AC 34 ms
51,904 KB
testcase_43 AC 79 ms
76,600 KB
testcase_44 AC 77 ms
76,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


T = int(input())

result = []
for _ in range(T):
    N = int(input())
    result.append(math.isqrt(N))
print(*result, sep='\n')
0