結果

問題 No.1113 二つの整数 / Two Integers
ユーザー kozykozy
提出日時 2020-07-19 19:17:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 425 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-12-16 07:24:46
合計ジャッジ時間 19,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,128 KB
testcase_01 AC 27 ms
16,128 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 29 ms
16,256 KB
testcase_07 AC 29 ms
21,760 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 36 ms
17,824 KB
testcase_11 AC 31 ms
16,000 KB
testcase_12 TLE -
testcase_13 AC 31 ms
21,888 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 38 ms
21,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
A,B=map(int,input().split())
c=math.gcd(A,B)
d=len(make_divisors(c))
if d%2==1:
    print("Odd")
else:
    print("Even")
0