結果

問題 No.1113 二つの整数 / Two Integers
ユーザー c-yanc-yan
提出日時 2020-07-17 21:27:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-29 21:19:51
合計ジャッジ時間 9,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from math import gcd


def prime_factorize(n):
    result = []
    if n % 2 == 0:
        t = 0
        while n % 2 == 0:
            n //= 2
            t += 1
        result.append((2, t))
    for i in range(3, int(n ** 0.5) + 1, 2):
        if n % i != 0:
            continue
        t = 0
        while n % i == 0:
            n //= i
            t += 1
        result.append((i, t))
        if n == 1:
            break
    if n != 1:
        result.append((n, 1))
    return result


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

X = gcd(A, B)

result = 1
for _, c in prime_factorize(X):
    result *= c + 1

if X % 2 == 0:
    print('Even')
else:
    print('Odd')
0