結果
問題 | No.1656 Recuperation |
ユーザー | hayaten |
提出日時 | 2021-08-27 21:21:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,199 bytes |
コンパイル時間 | 2,266 ms |
コンパイル使用メモリ | 208,816 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-21 00:38:41 |
合計ジャッジ時間 | 2,654 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
ソースコード
#pragma region Macros // #pragma GCC target("avx2") #pragma GCC optimize("O3") #include <bits/stdc++.h> #define rep(i, n) for (long long i = 0; i < (n); i++) #define rrep(i, n) for (long long i = (n - 1); i >= 0; i--) #define ALL(v) v.begin(), v.end() #define pb push_back #define eb emplace_back #define endl "\n" #define fi first #define se second #define popcount(bit) __builtin_popcount(bit) #define popcountll(bit) __builtin_popcountll(bit) using namespace std; using P = pair<int, int>; using PL = pair<long long, long long>; using Graph = vector<vector<int>>; typedef long long ll; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int fx[8] = {0, 1, 1, 1, 0, -1, -1, -1}; const int fy[8] = {1, 1, 0, -1, -1, -1, 0, 1}; template <typename T> const auto INF = numeric_limits<T>::max() / 2; void solve() { ll a, b; cin >> a >> b; ll res = a * b + b; cout << res << endl; } int main() { cin.tie(0); ios::sync_with_stdio(false); int t; cin >> t; while(t--) solve(); }