結果

問題 No.2194 兄弟の掛け引き
ユーザー Mat_hMat_h
提出日時 2023-03-02 20:31:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 457 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-17 13:59:27
合計ジャッジ時間 1,145 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def Main():
    a,b,c=map(int,input().split())
    ans1,ans2=-1,-1
    if c>b:
        ans1=c+b
    else:
        ans1=c+b
        ans2=c
    if ans1%a!=0 and ans2%a!=0:
        print(-1)
        exit()
    if ans1%a==0 and ans1!=-1:
        ans1//=a
    if ans2%a==0 and ans2!=-1:
        ans2//=a
    if ans2==-1:
        print(ans1)
    elif ans1==ans2:
        print(ans1)
    else:
        print(min(ans1,ans2))
        print(max(ans1,ans2))

Main()  
0