結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | c-yan |
提出日時 | 2020-07-17 21:24:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 662 bytes |
コンパイル時間 | 558 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 18,080 KB |
最終ジャッジ日時 | 2024-05-07 06:32:48 |
合計ジャッジ時間 | 3,581 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
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 range(prime_factorize(X)): result *= c if X % 2 == 0: print('Even') else: print('Odd')