結果

問題 No.1113 二つの整数 / Two Integers
ユーザー freecss00freecss00
提出日時 2020-07-17 21:49:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 117,760 KB
最終ジャッジ日時 2024-11-29 23:14:17
合計ジャッジ時間 6,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,880 KB
testcase_01 AC 46 ms
112,000 KB
testcase_02 AC 268 ms
63,872 KB
testcase_03 AC 224 ms
59,080 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 WA -
testcase_09 TLE -
testcase_10 AC 54 ms
59,300 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 47 ms
58,496 KB
testcase_14 AC 49 ms
59,008 KB
testcase_15 WA -
testcase_16 AC 51 ms
117,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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())
ctr_a = collections.Counter(get_primes(a))
ctr_b = collections.Counter(get_primes(b))
res = 0
for x in ctr_b & ctr_a:
    res += (ctr_a[x] + 1) * (ctr_b[x] + 1)
if res == 0 or res % 2 == 1:
    print('Odd')
else:
    print('Even')
0