結果

問題 No.2194 兄弟の掛け引き
ユーザー MottchanMottchan
提出日時 2023-03-24 18:05:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 81,624 KB
実行使用メモリ 53,448 KB
最終ジャッジ日時 2023-10-18 20:32:05
合計ジャッジ時間 2,207 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

a,b,c = map(int, input().split())

ans=[]

for i in range(1,10):
    if i * a - b > 0 and i * a - b == c: 
        j = (c + b)/a
        ans.append(int(j))

if ans == []:
    print('-1')
else:
    print(*ans)
0