結果
| 問題 |
No.1700 floor X
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-13 15:57:04 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 215 bytes |
| コンパイル時間 | 1,644 ms |
| コンパイル使用メモリ | 193,188 KB |
| 最終ジャッジ日時 | 2025-02-14 02:16:34 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 41 WA * 3 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(void){
int t;
cin >> t;
long long n;
for (int i = 0; i < t; i++) {
cin >> n;
cout << (long long)floor(sqrt(n)) << endl;
}
}