結果

問題 No.1700 floor X
ユーザー harurunharurun
提出日時 2021-09-11 00:05:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 77,684 KB
最終ジャッジ日時 2024-07-23 03:32:20
合計ジャッジ時間 6,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,000 KB
testcase_01 AC 115 ms
77,148 KB
testcase_02 AC 105 ms
76,156 KB
testcase_03 AC 108 ms
76,616 KB
testcase_04 AC 108 ms
76,164 KB
testcase_05 AC 107 ms
76,400 KB
testcase_06 AC 111 ms
77,684 KB
testcase_07 AC 106 ms
76,480 KB
testcase_08 AC 106 ms
76,736 KB
testcase_09 AC 109 ms
77,272 KB
testcase_10 AC 109 ms
76,564 KB
testcase_11 AC 107 ms
76,312 KB
testcase_12 AC 108 ms
76,496 KB
testcase_13 AC 108 ms
76,624 KB
testcase_14 AC 110 ms
77,320 KB
testcase_15 AC 109 ms
76,192 KB
testcase_16 AC 110 ms
77,076 KB
testcase_17 AC 105 ms
76,440 KB
testcase_18 AC 110 ms
77,328 KB
testcase_19 AC 107 ms
76,384 KB
testcase_20 AC 108 ms
76,616 KB
testcase_21 AC 113 ms
77,060 KB
testcase_22 AC 111 ms
76,828 KB
testcase_23 AC 111 ms
76,748 KB
testcase_24 AC 111 ms
77,016 KB
testcase_25 AC 110 ms
76,984 KB
testcase_26 AC 111 ms
76,752 KB
testcase_27 AC 113 ms
77,124 KB
testcase_28 AC 111 ms
77,132 KB
testcase_29 AC 111 ms
76,788 KB
testcase_30 AC 113 ms
77,188 KB
testcase_31 AC 110 ms
77,020 KB
testcase_32 AC 111 ms
77,076 KB
testcase_33 AC 110 ms
76,820 KB
testcase_34 AC 112 ms
76,848 KB
testcase_35 AC 111 ms
77,004 KB
testcase_36 AC 113 ms
77,048 KB
testcase_37 AC 109 ms
76,968 KB
testcase_38 AC 111 ms
77,168 KB
testcase_39 AC 112 ms
76,872 KB
testcase_40 AC 113 ms
76,752 KB
testcase_41 AC 112 ms
77,132 KB
testcase_42 AC 37 ms
52,744 KB
testcase_43 AC 113 ms
77,076 KB
testcase_44 AC 110 ms
76,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
T=int(input())
for i in range(T):
  N=int(input())
  print(math.isqrt(N))
0