結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | ttr |
提出日時 | 2020-02-14 22:44:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,090 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,000 KB |
実行使用メモリ | 181,924 KB |
最終ジャッジ日時 | 2024-11-16 01:06:27 |
合計ジャッジ時間 | 10,578 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
59,724 KB |
testcase_01 | AC | 39 ms
144,968 KB |
testcase_02 | AC | 40 ms
53,764 KB |
testcase_03 | AC | 41 ms
53,996 KB |
testcase_04 | AC | 44 ms
59,100 KB |
testcase_05 | AC | 42 ms
54,060 KB |
testcase_06 | WA | - |
testcase_07 | AC | 42 ms
53,084 KB |
testcase_08 | AC | 40 ms
53,948 KB |
testcase_09 | AC | 40 ms
53,980 KB |
testcase_10 | AC | 177 ms
84,220 KB |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 194 ms
83,440 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | AC | 1,371 ms
84,344 KB |
testcase_20 | AC | 306 ms
181,924 KB |
ソースコード
import bisect N,M,K = map(int, input().split()) B = [i for i in input().split()] op = B.pop(0) A = [int(input()) for _ in range(N)] for i in range(M): B[i] = int(B[i]) def gcd(a, b): if a < b: a, b = b, a if a%b == 0: return b return gcd(b, a%b) if op == "+": for i in range(N): A[i] %= K for j in range(M): B[j] %= K B.sort() ans = 0 for a in A: ans += bisect.bisect_right(B, K-a) - bisect.bisect_left(B, K-a) else: dic = {} i = 1 while i < K**0.5: if K%i == 0: dic[i] = 0 dic[K//i] = 0 i += 1 if K**0.5 == int(K**0.5): dic[int(K**0.5)] = 0 B.sort() newB = [B[0]] for i in range(1, M): if B[i] == B[i-1]: continue if gcd(K, B[i]) == 1: continue newB.append(B[i]) for b in newB: for key in dic: if b%key == 0: dic[key] += bisect.bisect_right(B, b) - bisect.bisect_left(B, b) ans = 0 for a in A: ans += dic[K//gcd(a, K)] print(ans)