結果

問題 No.2194 兄弟の掛け引き
ユーザー n_nan_na
提出日時 2023-01-21 02:47:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 53,680 KB
最終ジャッジ日時 2024-06-23 14:10:31
合計ジャッジ時間 1,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,068 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,016 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,364 KB
testcase_05 AC 36 ms
53,680 KB
testcase_06 WA -
testcase_07 AC 37 ms
51,880 KB
testcase_08 AC 37 ms
53,136 KB
testcase_09 WA -
testcase_10 AC 36 ms
52,156 KB
testcase_11 AC 37 ms
52,400 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,264 KB
testcase_14 WA -
testcase_15 AC 37 ms
53,620 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C = map(int,input().split())

res = []
if C%A == 0 and C//A <= A/B:
    res.append(C//A)
if (B+C)%A == 0 and (B+C)//A > A/B:
    res.append((B+C)//A)
if not res:
    print(-1)
else:
    for v in res:
        print(v)
0