結果

問題 No.442 和と積
ユーザー ebicochinealebicochineal
提出日時 2016-11-11 22:43:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 420 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,256 KB
最終ジャッジ日時 2024-12-23 02:39:16
合計ジャッジ時間 8,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 33 ms
17,444 KB
testcase_02 AC 44 ms
10,624 KB
testcase_03 AC 51 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 47 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 134 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 38 ms
10,624 KB
testcase_16 AC 39 ms
10,624 KB
testcase_17 AC 33 ms
10,624 KB
testcase_18 AC 34 ms
10,624 KB
testcase_19 AC 82 ms
10,752 KB
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env python3

def f(n):
    l = []
    a, b = 0, 2
    while b * b <= n:
        if n % b == 0:
            n //= b
            l += [b]
        else:
            b += 1 + a
            a = 1
    if n > 1 : l += [n]
    return [1] + l

A, B = map(int, input().split())
s = f(A + B)
p = f(A * B)
l = []
ans = 1
for i in s:
    if i in p:
        p.remove(i)
        l += [i]
for i in l:
    ans *= i
print(ans)
0