結果
| 問題 | No.1113 二つの整数 / Two Integers |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-15 20:38:59 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 772 bytes |
| 記録 | |
| コンパイル時間 | 732 ms |
| コンパイル使用メモリ | 81,972 KB |
| 実行使用メモリ | 65,684 KB |
| 最終ジャッジ日時 | 2024-10-10 23:28:41 |
| 合計ジャッジ時間 | 3,337 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | TLE * 1 -- * 14 |
ソースコード
def gcd(x, y):
x_list = []
y_list = []
cnt = 1
while x > cnt :
if x % cnt == 0:
x_list.append(cnt)
cnt += 1
cnt = 1
while y > cnt:
if y % cnt == 0:
y_list.append(cnt)
cnt += 1
cnt_x, cnt_y = 0, 0
gcd_list = []
for t_x in x_list:
for t_y in y_list:
if t_x == t_y:
gcd_list.append(t_y)
return max(gcd_list)
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())
g = gcd(A,B)
md = make_divisors(g)
count = len(md)
if count%2 == 0:
print("Even")
else:
print("Odd")