結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | hiroshi tamura |
提出日時 | 2023-07-21 21:04:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 922 bytes |
コンパイル時間 | 1,874 ms |
コンパイル使用メモリ | 126,404 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 22:21:05 |
合計ジャッジ時間 | 2,230 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
ソースコード
#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; string S; cin >> S; //calc //int ans = A + B; //ans cout << A + B << " " << S << endl; return 0; }