結果

問題 No.1700 floor X
ユーザー vjudge1
提出日時 2025-07-05 19:46:10
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 2,526 ms
コンパイル使用メモリ 276,580 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-07-05 19:46:17
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define maxn
#define el '\n'

ll n;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);

    cin >> n;
    ll x;
    for(int i=1; i<=n; i++)
    {
        cin >> x;
        cout << fixed << setprecision(0) << sqrtl(x) << endl;
    }
}
// orzhienq coder manh nhat ha tien
0