結果

問題 No.2194 兄弟の掛け引き
ユーザー SidewaysOwlSidewaysOwl
提出日時 2023-01-20 23:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 211 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-06-23 11:29:08
合計ジャッジ時間 1,522 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,836 KB
testcase_01 AC 36 ms
52,360 KB
testcase_02 AC 37 ms
52,064 KB
testcase_03 AC 37 ms
53,564 KB
testcase_04 AC 36 ms
52,268 KB
testcase_05 AC 36 ms
52,620 KB
testcase_06 AC 36 ms
52,820 KB
testcase_07 AC 36 ms
52,968 KB
testcase_08 AC 37 ms
52,212 KB
testcase_09 AC 37 ms
52,212 KB
testcase_10 AC 38 ms
53,912 KB
testcase_11 AC 36 ms
53,296 KB
testcase_12 AC 36 ms
54,108 KB
testcase_13 AC 36 ms
52,004 KB
testcase_14 AC 37 ms
51,996 KB
testcase_15 AC 36 ms
52,196 KB
testcase_16 AC 36 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = map(int,input().split())
ans = []
if b >= c:
    if c % a == 0:
        ans.append(c//a)
if (b + c) % a == 0:
    ans.append((b+c)//a)
ans.sort()
if ans:
    for e in ans:
        print(e)
else:print(-1)
0