結果
| 問題 |
No.2194 兄弟の掛け引き
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-02-15 18:47:06 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 419 bytes |
| コンパイル時間 | 2,232 ms |
| コンパイル使用メモリ | 191,548 KB |
| 最終ジャッジ日時 | 2025-02-10 15:44:02 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;
#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())
signed main(){
ios_base::sync_with_stdio(0),cin.tie(0);
int a,b,c; cin >> a >> b >> c;
bool flag=0;
if(c%a==0&&c<=b) cout << c/a << "\n",flag=1;
if((b+c)%a==0) cout << (b+c)/a << "\n",flag=1;
if(!flag) cout << "-1\n";
}