結果
| 問題 |
No.1700 floor X
|
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-07-05 22:09:00 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 2,000 ms |
| コード長 | 311 bytes |
| コンパイル時間 | 1,680 ms |
| コンパイル使用メモリ | 163,940 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2025-07-05 22:09:05 |
| 合計ジャッジ時間 | 4,779 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 44 |
ソースコード
#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 << (int)(sqrtl(x)) << endl;
}
}
vjudge1