結果

問題 No.2194 兄弟の掛け引き
ユーザー KazunKazun
提出日時 2023-01-20 21:23:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2024-06-23 09:09:19
合計ジャッジ時間 1,446 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,576 KB
testcase_01 AC 44 ms
57,344 KB
testcase_02 AC 42 ms
56,704 KB
testcase_03 AC 42 ms
56,704 KB
testcase_04 AC 43 ms
56,832 KB
testcase_05 AC 38 ms
57,216 KB
testcase_06 AC 39 ms
56,960 KB
testcase_07 AC 39 ms
56,576 KB
testcase_08 AC 39 ms
57,088 KB
testcase_09 AC 38 ms
56,832 KB
testcase_10 AC 38 ms
57,216 KB
testcase_11 AC 40 ms
56,576 KB
testcase_12 AC 38 ms
57,088 KB
testcase_13 AC 39 ms
56,832 KB
testcase_14 AC 42 ms
57,600 KB
testcase_15 AC 42 ms
56,576 KB
testcase_16 AC 42 ms
56,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    flag=0
    for N in range(1,10**6):
        if A*N>B:
            M=A*N-B
        else:
            M=A*N

        if M==C:
            flag=1
            print(N)

    if not flag:
        print(-1)

#==================================================
solve()
0