結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー |
|
提出日時 | 2022-09-04 15:18:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 1,000 ms |
コード長 | 456 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,240 KB |
実行使用メモリ | 52,608 KB |
最終ジャッジ日時 | 2024-11-18 20:36:03 |
合計ジャッジ時間 | 1,453 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 |
ソースコード
import math a,b = map(int,input().split()) def make_divisors(n): divisors = [] for i in range(1, int(n**0.5)+1): if n % i == 0: divisors.append(i) if i != n // i: divisors.append(n//i) divisors.sort() return divisors tmp = math.gcd(a,b) if tmp**0.5 == int(tmp**0.5): print("Odd") else: print("Even") #if len(make_divisors(tmp)) % 2 == 0: # print("Even") #else: # print("Odd")