結果

問題 No.2194 兄弟の掛け引き
ユーザー n_nan_na
提出日時 2023-01-21 03:19:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 232 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 53,764 KB
最終ジャッジ日時 2024-06-23 14:39:48
合計ジャッジ時間 1,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,236 KB
testcase_01 AC 37 ms
51,812 KB
testcase_02 AC 37 ms
53,764 KB
testcase_03 AC 36 ms
52,428 KB
testcase_04 AC 38 ms
53,280 KB
testcase_05 AC 37 ms
51,824 KB
testcase_06 AC 38 ms
52,580 KB
testcase_07 AC 36 ms
52,764 KB
testcase_08 AC 37 ms
52,492 KB
testcase_09 AC 37 ms
52,436 KB
testcase_10 AC 37 ms
52,200 KB
testcase_11 AC 36 ms
52,428 KB
testcase_12 AC 37 ms
52,324 KB
testcase_13 AC 36 ms
52,564 KB
testcase_14 AC 37 ms
52,344 KB
testcase_15 AC 37 ms
52,964 KB
testcase_16 AC 37 ms
52,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

res = []
if (B+C)%A == 0 and (B+C)//A > B/A:
    res.append((B+C)//A)
if C%A == 0 and C//A <= B/A:
    res.append(C//A)
res.sort()
if not res: print(-1)
else:
    for r in res:
        print(r)
    
0