結果

問題 No.816 Beautiful tuples
ユーザー oz4point5oz4point5
提出日時 2019-04-19 21:26:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 267 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 65,688 KB
最終ジャッジ日時 2024-09-22 16:26:37
合計ジャッジ時間 6,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,528 KB
testcase_01 AC 40 ms
52,448 KB
testcase_02 AC 101 ms
58,296 KB
testcase_03 AC 406 ms
58,992 KB
testcase_04 AC 104 ms
58,568 KB
testcase_05 AC 1,309 ms
59,552 KB
testcase_06 AC 175 ms
58,976 KB
testcase_07 AC 446 ms
58,800 KB
testcase_08 AC 272 ms
58,444 KB
testcase_09 AC 327 ms
58,240 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

a,b = map(int,input().split())

ans = 0
for c in range(1,a+b+1):
    if a != b and b != c and c != a:
        if (b + c) % a == 0 and (a + c) % b == 0 and (b + a) % c == 0:
            ans = c
            break
else:
    ans = -1

print(ans)
0