結果

問題 No.1113 二つの整数 / Two Integers
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-20 21:25:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 189 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 59,292 KB
最終ジャッジ日時 2024-06-06 20:12:23
合計ジャッジ時間 5,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 63 ms
57,984 KB
testcase_03 AC 223 ms
58,368 KB
testcase_04 AC 334 ms
58,112 KB
testcase_05 AC 185 ms
58,368 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 42 ms
58,240 KB
testcase_11 AC 43 ms
58,152 KB
testcase_12 AC 366 ms
58,112 KB
testcase_13 AC 42 ms
58,368 KB
testcase_14 AC 61 ms
58,240 KB
testcase_15 AC 402 ms
57,972 KB
testcase_16 AC 41 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x=math.gcd(a,b)

root=int(x**0.5//1)

for i in range(min(1,root-1), root+1):
    if pow(i,2)==x:
        print('Odd')
        exit()

print('Even')
0