結果

問題 No.1700 floor X
ユーザー sorag
提出日時 2022-09-02 02:36:39
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 1,351 ms
コンパイル使用メモリ 106,968 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-15 06:50:48
合計ジャッジ時間 4,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 41 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include<utility>
#include <vector>
#include <map>
#include<string>
#include<queue>
#include<math.h>
#define pb push_back
#define all(x) begin(x),end(x)
#define gall(x) begin(x),end(x),greater<>()
#define ll long long
#define P pair<int,int>
#define lP pair<ll,ll>
#include <iostream>
#include <vector>
using namespace std;


int main() {
    ll t,n;
    cin>>t;
    for(int i=0;i<t;i++){
        cin>> n;
        ll a;
        a=sqrt(n);
        cout<<a<<endl;
    }
    return 0;
}
   
0