結果

問題 No.982 Add
ユーザー roarisroaris
提出日時 2020-03-13 11:37:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,424 KB
最終ジャッジ日時 2024-11-21 19:38:49
合計ジャッジ時間 2,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,396 KB
testcase_01 AC 38 ms
53,072 KB
testcase_02 AC 37 ms
52,476 KB
testcase_03 AC 37 ms
52,216 KB
testcase_04 AC 37 ms
52,740 KB
testcase_05 AC 38 ms
52,500 KB
testcase_06 AC 37 ms
53,104 KB
testcase_07 AC 37 ms
52,400 KB
testcase_08 AC 38 ms
52,708 KB
testcase_09 AC 38 ms
52,700 KB
testcase_10 AC 38 ms
52,068 KB
testcase_11 AC 38 ms
52,344 KB
testcase_12 AC 37 ms
53,000 KB
testcase_13 AC 36 ms
52,296 KB
testcase_14 AC 37 ms
52,240 KB
testcase_15 AC 36 ms
52,336 KB
testcase_16 AC 36 ms
52,800 KB
testcase_17 AC 34 ms
52,400 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 35 ms
53,376 KB
testcase_20 AC 38 ms
52,644 KB
testcase_21 AC 36 ms
52,948 KB
testcase_22 AC 38 ms
53,424 KB
testcase_23 AC 38 ms
52,832 KB
testcase_24 AC 35 ms
51,876 KB
testcase_25 AC 37 ms
53,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    while b:
        a, b = b, a%b
    return a

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

if gcd(A, B)!=1:
    print(-1)
else:
    print((A-1)*(B-1)//2)
0