結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | 双六 |
提出日時 | 2020-07-21 22:11:04 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 989 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 82,548 KB |
実行使用メモリ | 88,896 KB |
最終ジャッジ日時 | 2024-06-10 02:28:53 |
合計ジャッジ時間 | 3,319 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") def getlist(): return list(map(int, input().split())) from fractions import gcd num = 10 ** 6 + 1 #適当に値を入れる L = [1 for i in range(num)]; L[0] = 0; L[1] = 0 plist = [] for i in range(num): if L[i] == 1: plist.append(i); c = 2 while i * c <= num - 1: L[i * c] = 0; c += 1 #素因数分解の結果を辞書型として返す def prime_factorization(N): D = defaultdict(int) amari = 1 for i in plist: while N % i == 0: D[i] += 1; N = int(N // i) if N != 1: amari = N return D, amari #処理内容 def main(): A, B = getlist() GCD = gcd(A, B) fac, amari = prime_factorization(GCD) ans = "Odd" for key, val in fac.items(): if val % 2 == 1: ans = "Even" if amari != 1: sq = int((amari ** 0.5) // 1) if sq ** 2 != amari: ans = "Even" print(ans) if __name__ == '__main__': main()