結果

問題 No.1113 二つの整数 / Two Integers
ユーザー uni_pythonuni_python
提出日時 2020-07-19 22:00:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 344 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 86,932 KB
実行使用メモリ 71,932 KB
最終ジャッジ日時 2023-08-22 15:32:43
合計ジャッジ時間 2,816 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,920 KB
testcase_01 AC 68 ms
71,624 KB
testcase_02 AC 70 ms
71,864 KB
testcase_03 AC 69 ms
71,756 KB
testcase_04 AC 69 ms
71,748 KB
testcase_05 AC 71 ms
71,568 KB
testcase_06 AC 70 ms
71,452 KB
testcase_07 AC 70 ms
71,528 KB
testcase_08 AC 69 ms
71,640 KB
testcase_09 AC 69 ms
71,536 KB
testcase_10 AC 69 ms
71,732 KB
testcase_11 AC 71 ms
71,744 KB
testcase_12 AC 69 ms
71,752 KB
testcase_13 AC 70 ms
71,932 KB
testcase_14 AC 70 ms
71,680 KB
testcase_15 AC 70 ms
71,652 KB
testcase_16 AC 69 ms
71,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    from math import gcd
    mod=10**9+7
    A,B=MI()
    g=gcd(A,B)
    a=int(g**0.5)
    if a*a==g:
        print("Odd")
    else:
        print("Even")

    
    


main()
0