結果

問題 No.353 ヘイトプラス
ユーザー pointNpointN
提出日時 2022-05-22 19:29:27
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 432 bytes
コンパイル時間 1,233 ms
コンパイル使用メモリ 123,616 KB
最終ジャッジ日時 2025-01-29 13:49:42
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <cmath>
#include <iomanip>
#include <stack>
#include <queue>
#include <numeric>
#include <map>
#include <unordered_map>
#include <set>
#include <fstream>
#include <chrono>
#include <random>
#include <bitset>
//#include <atcoder/all>
using namespace std;

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