結果

問題 No.1700 floor X
ユーザー titan23titan23
提出日時 2022-06-29 02:54:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 77,968 KB
最終ジャッジ日時 2023-08-14 04:02:56
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,720 KB
testcase_01 AC 99 ms
77,872 KB
testcase_02 AC 95 ms
77,948 KB
testcase_03 AC 95 ms
77,484 KB
testcase_04 AC 97 ms
77,944 KB
testcase_05 AC 97 ms
77,816 KB
testcase_06 AC 97 ms
77,860 KB
testcase_07 AC 95 ms
77,940 KB
testcase_08 AC 94 ms
77,768 KB
testcase_09 AC 98 ms
77,968 KB
testcase_10 AC 93 ms
77,804 KB
testcase_11 AC 95 ms
77,740 KB
testcase_12 AC 94 ms
77,952 KB
testcase_13 AC 94 ms
77,700 KB
testcase_14 AC 96 ms
77,744 KB
testcase_15 AC 96 ms
77,820 KB
testcase_16 AC 101 ms
77,748 KB
testcase_17 AC 96 ms
77,640 KB
testcase_18 AC 94 ms
77,448 KB
testcase_19 AC 95 ms
77,544 KB
testcase_20 AC 95 ms
77,772 KB
testcase_21 AC 100 ms
77,428 KB
testcase_22 AC 99 ms
77,584 KB
testcase_23 AC 99 ms
77,428 KB
testcase_24 AC 101 ms
77,652 KB
testcase_25 AC 98 ms
77,520 KB
testcase_26 AC 98 ms
77,660 KB
testcase_27 AC 97 ms
77,732 KB
testcase_28 AC 97 ms
77,428 KB
testcase_29 AC 98 ms
77,544 KB
testcase_30 AC 99 ms
77,560 KB
testcase_31 AC 99 ms
77,604 KB
testcase_32 AC 99 ms
77,624 KB
testcase_33 AC 98 ms
77,664 KB
testcase_34 AC 97 ms
77,792 KB
testcase_35 AC 97 ms
77,692 KB
testcase_36 AC 99 ms
77,564 KB
testcase_37 AC 99 ms
77,836 KB
testcase_38 AC 98 ms
77,776 KB
testcase_39 AC 99 ms
77,496 KB
testcase_40 AC 99 ms
77,424 KB
testcase_41 AC 99 ms
77,424 KB
testcase_42 AC 77 ms
71,396 KB
testcase_43 AC 96 ms
77,508 KB
testcase_44 AC 97 ms
77,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()))))

0