結果

問題 No.1700 floor X
ユーザー 太陽フレア
提出日時 2021-12-01 21:08:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-04 22:35:28
合計ジャッジ時間 5,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
f = True
for num in range(int(input())):
    if f == True:
        c = str(math.floor(math.sqrt(int(input())))) + '\n'
        f = False
        continue
    c += str(math.floor(math.sqrt(int(input())))) + '\n'
print(c + '\n')
0