結果

問題 No.1113 二つの整数 / Two Integers
ユーザー tikitaka1201
提出日時 2020-07-20 21:23:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 185 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2024-12-24 13:56:49
合計ジャッジ時間 6,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 TLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
import math

x=math.gcd(a,b)

root=int(x**0.5//1)

for i in range(min(1,root-3), root+3):
    if i**2==x:
        print('Odd')
        exit()

print('Even')
0