結果

問題 No.1113 二つの整数 / Two Integers
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-17 21:26:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 53,968 KB
最終ジャッジ日時 2024-05-07 13:24:14
合計ジャッジ時間 1,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,412 KB
testcase_01 AC 35 ms
52,376 KB
testcase_02 AC 35 ms
52,684 KB
testcase_03 AC 36 ms
52,992 KB
testcase_04 AC 36 ms
52,992 KB
testcase_05 AC 37 ms
52,592 KB
testcase_06 AC 36 ms
53,288 KB
testcase_07 AC 39 ms
52,500 KB
testcase_08 AC 36 ms
52,940 KB
testcase_09 AC 38 ms
53,916 KB
testcase_10 AC 36 ms
53,736 KB
testcase_11 AC 37 ms
53,364 KB
testcase_12 AC 37 ms
52,888 KB
testcase_13 AC 36 ms
52,844 KB
testcase_14 AC 37 ms
53,376 KB
testcase_15 AC 36 ms
53,968 KB
testcase_16 AC 36 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def try_square_root_naive(n):
    m = int(n**.5)
    return True if abs(m*m - n) < 1e-6 else False

if try_square_root_naive(g):
    print('Odd')
else:
    print('Even')
0