結果

問題 No.892 タピオカ
ユーザー SoratopSoratop
提出日時 2020-11-12 12:15:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-22 19:10:32
合計ジャッジ時間 1,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

a=list(map(int,input().split()))[::2]
b=[prime_factorize(a[i]) for i in range(3)]
c=set()
for i in range(len(b)):
    for j in range(len(b[i])):
        c.add(b[i][j])
for i in set(c):
    if i%2!=0:
        print(":-(")
        break
else:
    print(":-)")
0