結果

問題 No.1700 floor X
ユーザー hir355hir355
提出日時 2021-10-08 22:47:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 87 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 87,100 KB
実行使用メモリ 78,160 KB
最終ジャッジ日時 2023-09-30 11:54:13
合計ジャッジ時間 7,762 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,708 KB
testcase_01 AC 125 ms
77,592 KB
testcase_02 AC 126 ms
77,760 KB
testcase_03 AC 127 ms
77,860 KB
testcase_04 AC 126 ms
77,800 KB
testcase_05 AC 126 ms
77,800 KB
testcase_06 AC 126 ms
77,800 KB
testcase_07 AC 126 ms
78,024 KB
testcase_08 AC 125 ms
78,160 KB
testcase_09 AC 126 ms
77,592 KB
testcase_10 AC 126 ms
77,772 KB
testcase_11 AC 126 ms
77,920 KB
testcase_12 AC 124 ms
77,760 KB
testcase_13 AC 125 ms
77,980 KB
testcase_14 AC 124 ms
77,680 KB
testcase_15 AC 125 ms
77,980 KB
testcase_16 AC 124 ms
77,672 KB
testcase_17 AC 125 ms
77,760 KB
testcase_18 AC 126 ms
77,696 KB
testcase_19 AC 124 ms
77,772 KB
testcase_20 AC 126 ms
77,592 KB
testcase_21 AC 126 ms
77,836 KB
testcase_22 AC 128 ms
77,856 KB
testcase_23 AC 126 ms
77,972 KB
testcase_24 AC 126 ms
78,060 KB
testcase_25 AC 128 ms
77,856 KB
testcase_26 AC 126 ms
77,712 KB
testcase_27 AC 127 ms
77,868 KB
testcase_28 AC 126 ms
77,612 KB
testcase_29 AC 127 ms
77,756 KB
testcase_30 AC 128 ms
77,800 KB
testcase_31 AC 127 ms
77,892 KB
testcase_32 AC 128 ms
77,804 KB
testcase_33 AC 128 ms
77,572 KB
testcase_34 AC 127 ms
77,948 KB
testcase_35 AC 127 ms
77,980 KB
testcase_36 AC 127 ms
77,968 KB
testcase_37 AC 125 ms
77,756 KB
testcase_38 AC 126 ms
77,860 KB
testcase_39 AC 125 ms
77,828 KB
testcase_40 AC 126 ms
77,892 KB
testcase_41 AC 125 ms
78,044 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    print(int((n + .5) ** .5))
0