結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | O2MT |
提出日時 | 2020-08-15 20:35:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 552 bytes |
コンパイル時間 | 771 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 65,424 KB |
最終ジャッジ日時 | 2024-10-10 23:11:17 |
合計ジャッジ時間 | 3,222 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
58,952 KB |
testcase_01 | AC | 37 ms
52,832 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
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 | -- | - |
ソースコード
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) A,B = map(int,input().split()) g = gcd(A,B) count = 0 for i in range(1,g+1): if A%i == 0 and B%i == 0: count += 1 if count%2 == 0: print("Even") else: print("Odd")