結果

問題 No.2420 Simple Problem
ユーザー dyktr_06dyktr_06
提出日時 2023-06-20 20:48:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 199,040 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 11:32:57
合計ジャッジ時間 18,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 191 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 72 ms
5,376 KB
testcase_04 AC 379 ms
5,376 KB
testcase_05 AC 237 ms
5,376 KB
testcase_06 AC 463 ms
5,376 KB
testcase_07 AC 471 ms
5,376 KB
testcase_08 AC 468 ms
5,376 KB
testcase_09 AC 465 ms
5,376 KB
testcase_10 AC 456 ms
5,376 KB
testcase_11 AC 463 ms
5,376 KB
testcase_12 AC 468 ms
5,376 KB
testcase_13 AC 446 ms
5,376 KB
testcase_14 AC 463 ms
5,376 KB
testcase_15 AC 472 ms
5,376 KB
testcase_16 AC 466 ms
5,376 KB
testcase_17 AC 458 ms
5,376 KB
testcase_18 AC 461 ms
5,376 KB
testcase_19 AC 463 ms
5,248 KB
testcase_20 AC 468 ms
5,376 KB
testcase_21 AC 463 ms
5,376 KB
testcase_22 AC 471 ms
5,376 KB
testcase_23 AC 469 ms
5,376 KB
testcase_24 AC 464 ms
5,376 KB
testcase_25 AC 465 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 357 ms
5,376 KB
testcase_28 AC 373 ms
5,376 KB
testcase_29 AC 359 ms
5,376 KB
testcase_30 AC 367 ms
5,376 KB
testcase_31 AC 370 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 185 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const long double EPS = 5e-15; // >_<

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n; cin >> n;

    while(n--){
        long double a, b; cin >> a >> b;
        cout << (int) ceil(sqrtl(a) + sqrt(b) + EPS) << endl;
    }
}
0