結果
| 問題 |
No.1057 素敵な日
|
| コンテスト | |
| ユーザー |
maki07061210
|
| 提出日時 | 2020-05-29 08:31:30 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 759 bytes |
| コンパイル時間 | 1,662 ms |
| コンパイル使用メモリ | 166,960 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-14 06:49:29 |
| 合計ジャッジ時間 | 2,323 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> P;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); ++i)
#define repto(i, n) for(int i = 0; i <= (n); ++i)
#define uniq(c) c.erase(unique(all(c)), c.end()) // ユニークなvecterにする。連続した値を除去して切り出す
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141945
#define MOD 1000000007
#define DEBUG(x) cout << #x << ": " << x << endl;
__attribute__((constructor))
void initial() {
cin.tie(0);
ios::sync_with_stdio(false);
}
int main() {
int a, b, ans;
cin >> a >> b;
int cake = a + b;
if(a == b) {
ans = 2*a-1;
} else {
int x = min(a, b);
ans = 2*x;
}
cout << ans << endl;
return 0;
}
maki07061210