結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,032 KB
testcase_01 AC 42 ms
54,100 KB
testcase_02 AC 43 ms
57,744 KB
testcase_03 AC 39 ms
52,832 KB
testcase_04 AC 38 ms
52,704 KB
testcase_05 AC 42 ms
59,044 KB
testcase_06 AC 40 ms
57,896 KB
testcase_07 AC 39 ms
53,200 KB
testcase_08 AC 38 ms
52,832 KB
testcase_09 AC 38 ms
53,452 KB
testcase_10 AC 42 ms
52,864 KB
testcase_11 AC 38 ms
52,808 KB
testcase_12 AC 41 ms
59,248 KB
testcase_13 AC 38 ms
52,192 KB
testcase_14 WA -
testcase_15 AC 41 ms
58,472 KB
testcase_16 AC 39 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

res = []
k = B//A
for n in range(1,k+1):
    if n*A-B <= 0 and C == n*A:
        res.append(n)
        break
for n in range(k+1,pow(10,5)+1):
    if n*A-B > 0 and C == n*A-B:
        res.append(n)
        break
res.sort()
if not res: print(-1)
else:
    for r in res:
        print(r)
    
0