結果
問題 | No.1700 floor X |
ユーザー |
![]() |
提出日時 | 2023-04-22 14:33:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 203 bytes |
コンパイル時間 | 1,683 ms |
コンパイル使用メモリ | 165,072 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 03:17:29 |
合計ジャッジ時間 | 4,021 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 44 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;int main() {int t ; cin >> t;while(t--){ll n; cin >> n;cout << (ll)sqrtl(n) << endl;}return 0;}