結果
| 問題 |
No.1860 Magnets
|
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2022-03-04 21:21:29 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 543 bytes |
| コンパイル時間 | 668 ms |
| コンパイル使用メモリ | 73,768 KB |
| 最終ジャッジ日時 | 2025-01-28 04:42:43 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 28 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/modint>
using namespace std;
using i64 = long long;
using modint = atcoder::static_modint<998244353>;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
int main(){
int a, b; cin >> a >> b;
if(a > b) swap(a,b);
int ans = a + b;
ans += max(0, (b-a)-1);
cout << ans << endl;
return 0;
}
struct ios_do_not_sync{
ios_do_not_sync(){
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
}
} ios_do_not_sync_instance;
Nachia