結果

問題 No.1700 floor X
ユーザー sorag
提出日時 2022-09-02 11:29:46
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 1,094 ms
コンパイル使用メモリ 112,336 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-15 16:54:59
合計ジャッジ時間 4,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<map>
#include<math.h>
#include<set>
#define all(x) x.begin(),x.end()
#define gall(x) x.begin(),x.end(),greater<>()
#define pb push_back
#define ll long long 
#define P pair<double,double>
#define LP pair<ll,ll>
using namespace std;


int main() {
	int t;
	cin >> t;
	for (int i = 1; i < t; i++) {
		int n;
		cin >> n;
		cout << sqrtl(n) << endl;
	}
	return 0;
}
0