結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
53,380 KB
testcase_02 AC 38 ms
52,948 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,020 KB
testcase_05 AC 40 ms
52,300 KB
testcase_06 AC 36 ms
52,260 KB
testcase_07 AC 36 ms
53,500 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
52,408 KB
testcase_11 AC 37 ms
52,020 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 38 ms
51,688 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
    print(*res)
0