結果

問題 No.3062 A + B
ユーザー matamatajupitermatamatajupiter
提出日時 2020-04-01 22:45:48
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 1,446 ms
コンパイル使用メモリ 163,840 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-09 19:30:16
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <algorithm>
#include <ctime>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include <cassert>
#define rep(i, n) for (int i = 0; i < (n); ++i)
using namespace std;
using ll = long long;
using ld = long double;
using P = pair<int, int>;

namespace search {
    bool binary_search(int x, vector<int> k) { int i, l = 0, r = k.size(); while (r - l >= 1) { i = (l + r) / 2; if (i == x) return true; else if (i < x) l = i + 1; else r = i; } return false; }
}

using namespace search;


int main(){
    ld a, b;
    cin >> a >> b;
    cout << a + b << endl;
    return 0;
}
0