結果

問題 No.1113 二つの整数 / Two Integers
ユーザー xuanjixuanji
提出日時 2020-07-17 21:28:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 178 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 54,040 KB
最終ジャッジ日時 2024-05-07 13:24:48
合計ジャッジ時間 1,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,012 KB
testcase_01 AC 35 ms
53,264 KB
testcase_02 AC 35 ms
52,376 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
54,040 KB
testcase_05 AC 36 ms
53,672 KB
testcase_06 AC 39 ms
52,564 KB
testcase_07 AC 36 ms
52,028 KB
testcase_08 AC 36 ms
52,612 KB
testcase_09 AC 36 ms
52,968 KB
testcase_10 AC 36 ms
53,152 KB
testcase_11 AC 35 ms
52,208 KB
testcase_12 AC 35 ms
52,268 KB
testcase_13 AC 36 ms
54,020 KB
testcase_14 AC 35 ms
52,032 KB
testcase_15 AC 35 ms
52,692 KB
testcase_16 AC 35 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

from math import gcd,sqrt

a, b = input().split(' ')
a = int(a)
b = int(b)

g = gcd(a, b)

if int(sqrt(g))**2 == g:
    print("Odd")
else:
    print("Even")
0