結果

問題 No.1113 二つの整数 / Two Integers
ユーザー 👑 KazunKazun
提出日時 2020-07-17 21:34:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 185 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-05-07 13:25:09
合計ジャッジ時間 1,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,156 KB
testcase_01 AC 34 ms
52,132 KB
testcase_02 AC 34 ms
53,372 KB
testcase_03 AC 34 ms
53,240 KB
testcase_04 AC 34 ms
53,316 KB
testcase_05 AC 35 ms
52,192 KB
testcase_06 AC 35 ms
52,316 KB
testcase_07 AC 35 ms
52,432 KB
testcase_08 AC 35 ms
53,408 KB
testcase_09 AC 34 ms
52,220 KB
testcase_10 AC 36 ms
52,248 KB
testcase_11 AC 34 ms
53,604 KB
testcase_12 AC 37 ms
52,628 KB
testcase_13 AC 33 ms
52,232 KB
testcase_14 AC 34 ms
52,132 KB
testcase_15 AC 33 ms
53,684 KB
testcase_16 AC 34 ms
52,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd,sqrt
A,B=map(int,input().split())
X=gcd(A,B)

M=int(sqrt(X))

F=False
for k in range(-2,3):
    F|=((M-k)*(M-k)==X)

if F:
    print("Odd")
else:
    print("Even")
0