結果

問題 No.1700 floor X
ユーザー shinichishinichi
提出日時 2021-10-16 14:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 76,004 KB
最終ジャッジ日時 2023-10-17 22:11:31
合計ジャッジ時間 7,458 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,536 KB
testcase_01 AC 89 ms
75,996 KB
testcase_02 AC 86 ms
75,980 KB
testcase_03 AC 87 ms
75,976 KB
testcase_04 AC 91 ms
75,976 KB
testcase_05 AC 89 ms
75,988 KB
testcase_06 AC 87 ms
75,972 KB
testcase_07 AC 86 ms
75,984 KB
testcase_08 AC 86 ms
75,984 KB
testcase_09 AC 88 ms
76,004 KB
testcase_10 AC 84 ms
75,984 KB
testcase_11 AC 85 ms
75,976 KB
testcase_12 AC 86 ms
75,984 KB
testcase_13 AC 87 ms
75,984 KB
testcase_14 AC 89 ms
75,976 KB
testcase_15 AC 86 ms
75,984 KB
testcase_16 AC 87 ms
75,964 KB
testcase_17 AC 85 ms
75,988 KB
testcase_18 AC 87 ms
75,996 KB
testcase_19 AC 92 ms
75,976 KB
testcase_20 AC 85 ms
75,976 KB
testcase_21 AC 89 ms
75,988 KB
testcase_22 AC 92 ms
75,988 KB
testcase_23 AC 90 ms
75,988 KB
testcase_24 AC 91 ms
75,988 KB
testcase_25 AC 89 ms
75,992 KB
testcase_26 AC 90 ms
75,988 KB
testcase_27 AC 88 ms
75,988 KB
testcase_28 AC 88 ms
75,992 KB
testcase_29 AC 89 ms
75,988 KB
testcase_30 AC 89 ms
75,992 KB
testcase_31 AC 89 ms
75,996 KB
testcase_32 AC 91 ms
75,992 KB
testcase_33 AC 90 ms
75,988 KB
testcase_34 AC 89 ms
75,992 KB
testcase_35 AC 88 ms
75,992 KB
testcase_36 AC 88 ms
75,996 KB
testcase_37 AC 89 ms
75,988 KB
testcase_38 AC 89 ms
75,988 KB
testcase_39 AC 89 ms
75,996 KB
testcase_40 AC 90 ms
75,992 KB
testcase_41 AC 89 ms
75,968 KB
testcase_42 AC 38 ms
53,536 KB
testcase_43 AC 89 ms
75,992 KB
testcase_44 AC 89 ms
75,988 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