結果

問題 No.2420 Simple Problem
ユーザー hanba-gu1hanba-gu1
提出日時 2023-08-12 15:50:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 875 bytes
コンパイル時間 4,318 ms
コンパイル使用メモリ 262,868 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-11-20 04:23:15
合計ジャッジ時間 19,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 195 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 76 ms
6,820 KB
testcase_04 AC 404 ms
6,816 KB
testcase_05 AC 240 ms
6,816 KB
testcase_06 AC 476 ms
7,296 KB
testcase_07 AC 464 ms
7,168 KB
testcase_08 AC 464 ms
7,296 KB
testcase_09 AC 465 ms
7,296 KB
testcase_10 AC 480 ms
7,296 KB
testcase_11 AC 473 ms
7,296 KB
testcase_12 AC 477 ms
7,296 KB
testcase_13 AC 481 ms
7,296 KB
testcase_14 AC 491 ms
7,168 KB
testcase_15 AC 482 ms
7,296 KB
testcase_16 AC 473 ms
7,296 KB
testcase_17 AC 496 ms
7,168 KB
testcase_18 AC 484 ms
7,168 KB
testcase_19 AC 483 ms
7,296 KB
testcase_20 AC 484 ms
7,296 KB
testcase_21 AC 479 ms
7,296 KB
testcase_22 AC 479 ms
7,168 KB
testcase_23 AC 480 ms
7,296 KB
testcase_24 AC 468 ms
7,296 KB
testcase_25 AC 473 ms
7,296 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1 ms
6,820 KB
testcase_33 AC 189 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll = int_fast64_t;
using ull = uint_fast64_t;

using mint = modint998244353;

constexpr ll INF = 1ll << 60;

#define iscontain(container, value) (find(container.begin(), container.end(), value) != container.end())

template<typename T, typename D> void printelem(const T& container, const D& divide){
	for(const auto& i : container) cout << i << divide;
	cout << endl;
}
template<typename T> void printelem(const T& container) { printelem(container, ", "); }
template<typename T> T input(){ T ret; cin >> ret; return ret; }

int main(){
	//インプット
	ll N;
	cin >> N;
	vector<ll> A(N), B(N);
	for(ll i = 0; i < N; i++) cin >> A[i] >> B[i];

	//アウトプット
	for(ll i = 0; i < N; i++){
		ll ans = sqrt(A[i]) + sqrt(B[i]) + 1;
		cout << ans << endl;
	}
	
	return 0;
}
0