ログインしてください。
提出 #6588371
ソースコード 拡げる
#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
//#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
/*---------------------------------------------------------------------------------------------------
∧_∧
∧_∧ (´<_` ) Welcome to My Coding Space!
( ´_ゝ`) / ⌒i @hamayanhamayan
/ \ | |
/ / ̄ ̄ ̄ ̄/ |
__(__ニつ/ _/ .| .|____
\/____/ (u ⊃
---------------------------------------------------------------------------------------------------*/
int A, B;
//---------------------------------------------------------------------------------------------------
void _main() {
cin >> A >> B;
int k = (A + B) / 2;
if (abs(A - k) == abs(B - k)) cout << k << endl;
else cout << "IMPOSSIBLE" << endl;
}
提出情報
| 提出日時 | |
|---|---|
| 問題 | A - Harmony |
| ユーザ | hamayanhamayan |
| 言語 | C++14 (GCC 5.4.1) |
| 得点 | 100 |
| コード長 | 1560 Byte |
| 結果 | AC |
| 実行時間 | 1 ms |
| メモリ | 256 KiB |
ジャッジ結果
| セット名 | All | Sample | ||||
|---|---|---|---|---|---|---|
| 得点 / 配点 | 100 / 100 | 0 / 0 | ||||
| 結果 |
|
|
| セット名 | テストケース |
|---|---|
| All | sample_01, sample_02, sample_03, testcase_01, testcase_02, testcase_03, testcase_04, testcase_05, testcase_06, testcase_07, testcase_08 |
| Sample | sample_01, sample_02, sample_03 |
| ケース名 | 結果 | 実行時間 | メモリ |
|---|---|---|---|
| sample_01 | AC | 1 ms | 256 KiB |
| sample_02 | AC | 1 ms | 256 KiB |
| sample_03 | AC | 1 ms | 256 KiB |
| testcase_01 | AC | 1 ms | 256 KiB |
| testcase_02 | AC | 1 ms | 256 KiB |
| testcase_03 | AC | 1 ms | 256 KiB |
| testcase_04 | AC | 1 ms | 256 KiB |
| testcase_05 | AC | 1 ms | 256 KiB |
| testcase_06 | AC | 1 ms | 256 KiB |
| testcase_07 | AC | 1 ms | 256 KiB |
| testcase_08 | AC | 1 ms | 256 KiB |