結果

問題 No.1113 二つの整数 / Two Integers
ユーザー kariya1975kariya1975
提出日時 2020-07-18 09:07:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 515 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-07 23:25:17
合計ジャッジ時間 1,168 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

limit = max(A, B)
sieve = [True] * limit

for i in range(2, int(limit ** 0.5)):
    if not sieve[i]: 
        continue
    for j in range(2, limit // i):
        sieve[i * j] = False

for i in range(2, int(limit ** 0.5)):
    if not sieve[i]: 
        continue;
    a = 0
    b = 0
    while A % sieve[i] == 0:
        A /= i
        a += 1
    while B % i == 0 and b <= a:
        B /= i
        b += 1
    if min(a, b) % 2 == 1:
        print("Even")
        exit()
print("Odd")
0