結果

問題 No.1113 二つの整数 / Two Integers
ユーザー freecss00freecss00
提出日時 2020-07-17 21:55:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 432 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-05-07 08:19:57
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,752 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 143 ms
59,008 KB
testcase_03 AC 125 ms
59,392 KB
testcase_04 AC 126 ms
59,392 KB
testcase_05 TLE -
testcase_06 AC 40 ms
54,144 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import collections

def get_primes(n):
    res = []
    x = 2
    while n >= x*x:
        while n % x == 0:
            n //= x
            res.append(x)
        x += 1
    if n != 1:
        res.append(n)
    return res

a, b = map(int, input().split())
g = math.gcd(a, b)
ctr = collections.Counter(get_primes(g))
res = 1
for x in ctr.values():
    res *= x + 1
if res % 2 == 1:
    print('Odd')
else:
    print('Even')
0