結果
問題 | No.1700 floor X |
ユーザー |
|
提出日時 | 2023-06-13 15:57:01 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 215 bytes |
コンパイル時間 | 1,772 ms |
コンパイル使用メモリ | 193,276 KB |
最終ジャッジ日時 | 2025-02-14 02:16:24 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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;}}