結果

問題 No.1113 二つの整数 / Two Integers
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-08 13:19:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 125 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 86,792 KB
実行使用メモリ 71,872 KB
最終ジャッジ日時 2023-09-30 19:05:03
合計ジャッジ時間 3,087 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,804 KB
testcase_01 AC 75 ms
71,436 KB
testcase_02 AC 75 ms
71,380 KB
testcase_03 AC 75 ms
71,588 KB
testcase_04 AC 78 ms
71,472 KB
testcase_05 AC 78 ms
71,464 KB
testcase_06 AC 79 ms
71,116 KB
testcase_07 AC 78 ms
71,264 KB
testcase_08 AC 78 ms
71,524 KB
testcase_09 AC 76 ms
71,716 KB
testcase_10 AC 78 ms
71,644 KB
testcase_11 AC 77 ms
71,376 KB
testcase_12 AC 76 ms
71,684 KB
testcase_13 AC 76 ms
71,748 KB
testcase_14 AC 76 ms
71,632 KB
testcase_15 AC 76 ms
71,872 KB
testcase_16 AC 76 ms
71,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b = map(int,input().split())
g = math.gcd(a,b)
if int(g**0.5)**2 == g:
    print("Odd")
else:
    print("Even")
0