結果
問題 | No.892 タピオカ |
ユーザー | Soratop |
提出日時 | 2020-11-12 12:25:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 572 bytes |
コンパイル時間 | 411 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-22 19:10:34 |
合計ジャッジ時間 | 1,035 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | WA | - |
ソースコード
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] d=0 c=set() for i in a: if i==1: c.add(1) b=[prime_factorize(a[i]) for i in range(3)] for i in range(len(b)): for j in range(len(b[i])): c.add(b[i][j]) for i in c: if i%2!=0: print(":-(") break else: print(":-)")