結果

問題 No.816 Beautiful tuples
ユーザー hedwig100hedwig100
提出日時 2020-04-21 18:37:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 1,500 ms
コード長 668 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-17 07:45:41
合計ジャッジ時間 1,181 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 34 ms
10,880 KB
testcase_13 AC 33 ms
11,008 KB
testcase_14 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 ** 9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  copy import deepcopy
from bisect import bisect_left

def main():
    a,b = map(int,input().split())
    n = a + b
    ans = -1
    for i in range(1,n):
        if i * i > n:
            break
        if n%i == 0:
            c = i
            if c != a and c != b and (b + c)%a == 0 and (c + a)%b == 0:
                ans = c
                break
            c = n//i
            if c != a and c != b and (b + c)%a == 0 and (c + a)%b == 0:
                ans = c
                break
            
    print(ans)
if __name__ == '__main__':
    main() 
0