結果

問題 No.2420 Simple Problem
ユーザー Ping Chung ChangPing Chung Chang
提出日時 2023-08-29 21:52:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 1,641 ms
コンパイル使用メモリ 166,656 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-31 00:02:53
合計ジャッジ時間 18,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 207 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 78 ms
6,816 KB
testcase_04 AC 411 ms
6,816 KB
testcase_05 AC 262 ms
6,820 KB
testcase_06 AC 521 ms
6,820 KB
testcase_07 AC 517 ms
6,816 KB
testcase_08 AC 525 ms
6,820 KB
testcase_09 AC 512 ms
6,816 KB
testcase_10 AC 520 ms
6,820 KB
testcase_11 AC 518 ms
6,820 KB
testcase_12 AC 515 ms
6,816 KB
testcase_13 AC 518 ms
6,816 KB
testcase_14 AC 487 ms
6,820 KB
testcase_15 AC 499 ms
6,820 KB
testcase_16 AC 492 ms
6,816 KB
testcase_17 AC 498 ms
6,816 KB
testcase_18 AC 503 ms
6,816 KB
testcase_19 AC 521 ms
6,816 KB
testcase_20 AC 509 ms
6,820 KB
testcase_21 AC 491 ms
6,820 KB
testcase_22 AC 499 ms
6,816 KB
testcase_23 AC 482 ms
6,820 KB
testcase_24 AC 499 ms
6,816 KB
testcase_25 AC 489 ms
6,820 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 205 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define pll pair<ll,ll>
#define pii pair<int,int>
#define fs first
#define sc second
#define ld long double



const ld sq = sqrt(1e9+10);
const ld eps = 1e-9;

void solve(){
	ll a,b;
	cin>>a>>b;
	ld l = 0,r = sq;
	ld sa,sb;
	for(int i = 0;i<100;i++){
		ld mid = (l+r)/2;
		if(mid*mid>=a)r = mid;
		else l = mid;
	}
	sa = l;
	l = 0,r = sq;
	for(int i = 0;i<100;i++){
		ld mid = (l+r)/2;
		if(mid*mid>=b)r = mid;
		else l = mid;
	}
	sb = l;
	ld sum = ceil(sa+sb+eps);
	cout<<(ll)round(sum)<<'\n';
	return;
}
int main(){
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	int t;cin>>t;
	while(t--)solve();
}
0