結果

問題 No.1113 二つの整数 / Two Integers
ユーザー 37zigen37zigen
提出日時 2020-07-17 22:34:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-07 13:31:43
合計ジャッジ時間 6,358 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
10,880 KB
testcase_01 AC 280 ms
10,880 KB
testcase_02 AC 332 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 326 ms
10,880 KB
testcase_05 WA -
testcase_06 AC 288 ms
10,880 KB
testcase_07 AC 294 ms
10,880 KB
testcase_08 AC 278 ms
10,880 KB
testcase_09 AC 326 ms
10,880 KB
testcase_10 AC 313 ms
10,880 KB
testcase_11 AC 287 ms
10,880 KB
testcase_12 AC 337 ms
10,880 KB
testcase_13 AC 294 ms
10,880 KB
testcase_14 AC 326 ms
10,880 KB
testcase_15 AC 324 ms
10,880 KB
testcase_16 AC 307 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

a,b=map(int,input().split())
g=math.gcd(a,b)
# p^(2k+1)
even=False
for d in range(2,10**6+1):
    cnt=0
    while g%d==0:
        g//=d
        cnt+=1
    even|=cnt%2==1
if even:
    print("Even")
else:
    print("Odd")
0