結果

問題 No.1700 floor X
ユーザー mijinco2480mijinco2480
提出日時 2021-10-08 22:04:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 75 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 86,808 KB
実行使用メモリ 78,008 KB
最終ジャッジ日時 2023-09-30 10:16:12
合計ジャッジ時間 7,085 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,748 KB
testcase_01 AC 127 ms
77,700 KB
testcase_02 AC 111 ms
78,008 KB
testcase_03 AC 111 ms
77,496 KB
testcase_04 AC 115 ms
77,752 KB
testcase_05 AC 110 ms
77,924 KB
testcase_06 AC 113 ms
77,928 KB
testcase_07 AC 110 ms
77,724 KB
testcase_08 AC 118 ms
77,984 KB
testcase_09 AC 112 ms
77,640 KB
testcase_10 AC 113 ms
77,644 KB
testcase_11 AC 111 ms
77,852 KB
testcase_12 AC 107 ms
77,736 KB
testcase_13 AC 107 ms
77,532 KB
testcase_14 AC 107 ms
77,712 KB
testcase_15 AC 110 ms
77,644 KB
testcase_16 AC 118 ms
77,924 KB
testcase_17 AC 116 ms
77,932 KB
testcase_18 AC 115 ms
77,532 KB
testcase_19 AC 112 ms
77,548 KB
testcase_20 AC 122 ms
77,616 KB
testcase_21 AC 113 ms
77,644 KB
testcase_22 AC 116 ms
77,668 KB
testcase_23 AC 116 ms
77,612 KB
testcase_24 AC 114 ms
77,616 KB
testcase_25 AC 125 ms
77,604 KB
testcase_26 AC 112 ms
77,932 KB
testcase_27 AC 111 ms
77,492 KB
testcase_28 AC 109 ms
77,616 KB
testcase_29 AC 110 ms
77,804 KB
testcase_30 AC 112 ms
77,776 KB
testcase_31 AC 111 ms
77,980 KB
testcase_32 AC 115 ms
77,556 KB
testcase_33 AC 111 ms
77,592 KB
testcase_34 AC 111 ms
77,648 KB
testcase_35 AC 116 ms
77,500 KB
testcase_36 AC 111 ms
77,664 KB
testcase_37 AC 111 ms
77,660 KB
testcase_38 AC 109 ms
77,888 KB
testcase_39 AC 110 ms
77,428 KB
testcase_40 AC 111 ms
77,848 KB
testcase_41 AC 111 ms
77,704 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
    N=int(input())
    print(int(N**0.5))
0