結果

問題 No.1700 floor X
ユーザー vjudge1
提出日時 2025-07-05 01:51:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 195,000 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-07-05 01:51:40
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 41 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int t;
  cin >> t;
  while (t--) {
    long long n;
    cin >> n;
    cout << (long long)(sqrt(n)) << '\n';
  }

}
0