結果

問題 No.1113 二つの整数 / Two Integers
ユーザー stngstng
提出日時 2022-09-04 15:15:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 381 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 116,344 KB
最終ジャッジ日時 2024-11-18 20:33:46
合計ジャッジ時間 14,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8 TLE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)

    divisors.sort()
    return divisors

tmp = math.gcd(a,b)
if len(make_divisors(tmp)) % 2 == 0:
    print("Even")
else:
    print("Odd")
0