結果

問題 No.2194 兄弟の掛け引き
ユーザー mushilymushily
提出日時 2023-03-16 05:19:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 63,124 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-18 12:48:21
合計ジャッジ時間 1,406 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 WA -
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
4,348 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
int main()
{
    int x;
    int a;
    int b;
    int c;
    bool flag = true;

    cin >> a >> b >> c;

    x = c + b;
    if (x % a == 0)
    {
        cout << x / a << endl;
        flag = false;
    }

    if (c <= b && c % a == 0)
    {
        cout << c / a << endl;
        flag = false;
    }
    if (flag)
        cout << -1 << endl;
}
0