結果

問題 No.2194 兄弟の掛け引き
ユーザー n_nan_na
提出日時 2023-01-21 02:42:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 81,628 KB
実行使用メモリ 53,316 KB
最終ジャッジ日時 2024-06-23 14:07:20
合計ジャッジ時間 1,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,836 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,828 KB
testcase_03 AC 37 ms
52,756 KB
testcase_04 AC 37 ms
53,064 KB
testcase_05 AC 37 ms
52,900 KB
testcase_06 AC 39 ms
51,684 KB
testcase_07 AC 36 ms
52,372 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,200 KB
testcase_10 AC 37 ms
52,500 KB
testcase_11 AC 36 ms
52,560 KB
testcase_12 WA -
testcase_13 AC 38 ms
53,316 KB
testcase_14 AC 37 ms
52,636 KB
testcase_15 AC 37 ms
52,632 KB
testcase_16 AC 36 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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