結果

問題 No.1113 二つの整数 / Two Integers
ユーザー uni_pythonuni_python
提出日時 2020-07-19 22:00:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 344 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-05-09 21:16:11
合計ジャッジ時間 1,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,752 KB
testcase_01 AC 38 ms
52,716 KB
testcase_02 AC 37 ms
53,516 KB
testcase_03 AC 36 ms
53,940 KB
testcase_04 AC 36 ms
53,644 KB
testcase_05 AC 37 ms
52,688 KB
testcase_06 AC 37 ms
52,472 KB
testcase_07 AC 37 ms
53,180 KB
testcase_08 AC 37 ms
52,700 KB
testcase_09 AC 36 ms
53,972 KB
testcase_10 AC 37 ms
53,660 KB
testcase_11 AC 36 ms
53,828 KB
testcase_12 AC 37 ms
52,972 KB
testcase_13 AC 37 ms
53,264 KB
testcase_14 AC 36 ms
52,592 KB
testcase_15 AC 37 ms
53,988 KB
testcase_16 AC 37 ms
54,524 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