結果
| 問題 |
No.1052 電子機器X
|
| コンテスト | |
| ユーザー |
risujiroh
|
| 提出日時 | 2020-05-15 21:23:50 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 316 bytes |
| コンパイル時間 | 2,149 ms |
| コンパイル使用メモリ | 190,896 KB |
| 最終ジャッジ日時 | 2025-01-10 11:10:44 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "debug.h"
#else
#define DEBUG(...)
#endif
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n, k;
cin >> n >> k;
if (n % 2 == 0) {
cout << min(k + 1, n / 2) << '\n';
} else {
cout << min(k + 1, n) << '\n';
}
}
risujiroh