結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー hiroshi tamurahiroshi tamura
提出日時 2023-07-21 21:02:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 125,908 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-21 20:52:28
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx,avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")


#define _USE_MATH_DEFINES

#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <set>
#include <list>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <algorithm>
#include <functional>
#include <climits>
#include <cmath>
#include <utility>
#include <iomanip>
#include <chrono>
#include <random>
#include <memory>
#include <cstdlib>
#include <cstring>
#include <cmath>
//#include <boost/multiprecision/cpp_int.hpp>
#include <memory>



using namespace std;
using ll = long long int;
//// 任意長整数型
//namespace mp = boost::multiprecision;
//using Bint = mp::cpp_int;


int main()
{
	const int maxLoopCount = 10000;

	//input
	int A, B;
	cin >> A >> B;


	//calc
	int ans = A + B;


	//ans
	cout << ans << endl;


	return 0;
}
0