結果
問題 | No.1711 Divide LCM |
ユーザー | tamato |
提出日時 | 2021-10-15 22:46:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,748 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 82,868 KB |
実行使用メモリ | 153,924 KB |
最終ジャッジ日時 | 2024-09-17 17:52:25 |
合計ジャッジ時間 | 13,938 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 37 ms
53,264 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
mod = 998244353 eps = 10**-9 def main(): import sys from itertools import combinations input = sys.stdin.readline N = int(input()) A = [] PE = [] P = {} for i in range(N): M = int(input()) a = 1 D = {} for j in range(M): p, e = map(int, input().split()) if p not in P: P[p] = 0 P[p] = max(P[p], e) a *= p ** e D[p] = e A.append(a) PE.append(D) B = [] BA = [] BB = [] for i in range(N): D = PE[i] b = set() for p in D: if D[p] == P[p]: b.add(p) if b: B.append(b) BA.append(A[i]) else: BB.append(A[i]) L = len(P) P_list = list(P.keys()) for k in range(2, L+1): for J in combinations(P_list, k): J = list(J) ans = [[] for _ in range(k)] flg = 1 for i, b in enumerate(B): ok = 0 for j, pp in enumerate(J): if pp not in b: # ans[j].append(BA[i]) ok = 1 break if not ok: flg = 0 break if flg: for i, b in enumerate(B): for j, pp in enumerate(J): if pp not in b: ans[j].append(BA[i]) break ans[0].extend(BB) for a in ans: a = [len(a)] + a print(*a) exit() print(-1) if __name__ == '__main__': main()