結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | tamato |
提出日時 | 2020-02-14 22:43:25 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,256 bytes |
コンパイル時間 | 409 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 209,892 KB |
最終ジャッジ日時 | 2024-11-16 01:04:53 |
合計ジャッジ時間 | 10,405 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
59,136 KB |
testcase_01 | AC | 41 ms
149,248 KB |
testcase_02 | AC | 43 ms
60,836 KB |
testcase_03 | AC | 41 ms
54,016 KB |
testcase_04 | AC | 45 ms
59,520 KB |
testcase_05 | AC | 42 ms
54,272 KB |
testcase_06 | AC | 42 ms
54,016 KB |
testcase_07 | AC | 44 ms
54,016 KB |
testcase_08 | AC | 42 ms
54,016 KB |
testcase_09 | AC | 42 ms
53,888 KB |
testcase_10 | AC | 96 ms
89,424 KB |
testcase_11 | AC | 99 ms
92,968 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 86 ms
87,700 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 103 ms
92,280 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 150 ms
209,892 KB |
ソースコード
def main(): import sys from collections import defaultdict from math import sqrt, gcd input = sys.stdin.readline def prime(n): ret = defaultdict(int) dmax = int(sqrt(n)) for d in range(2, dmax+1): while n%d == 0: n //= d ret[d] += 1 if n != 1: ret[n] += 1 return ret N, M, K = map(int, input().split()) line = input().split() op = line[0] B = list(map(int, line[1:])) A = [0] * N for i in range(N): A[i] = int(input()) ans = 0 if op == '+': dic_B = defaultdict(int) for b in B: dic_B[b%K] += 1 for a in A: ans += dic_B[K - a%K] else: K_prime = prime(K) nmax = int(sqrt(K)) div = [] for d in range(1, nmax+1): if K%d == 0: div.append(d) if d **2 != K: div.append(K//d) div_num = defaultdict(int) for d in div: for b in B: if b%d == 0: div_num[d] += 1 for a in A: d = K // gcd(a, K) ans += div_num[d] print(ans) if __name__ == '__main__': main()