結果

問題 No.1113 二つの整数 / Two Integers
ユーザー gingin
提出日時 2020-07-17 21:28:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 242 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,648 KB
最終ジャッジ日時 2024-11-29 21:29:57
合計ジャッジ時間 19,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,700 KB
testcase_01 AC 27 ms
21,376 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 27 ms
17,572 KB
testcase_07 AC 26 ms
21,376 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A, B = map(int,input().split())

gcd = math.gcd(A,B)

if gcd == 1:
    print("Odd")
    exit()

cnt = 1
for i in range(1,int(gcd**0.5)+2):
    if gcd % i == 0:
        cnt += 1

if cnt % 2:
    print("Odd")
else:
    print("Even")
0