結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | tamato |
提出日時 | 2020-02-14 23:06:12 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,054 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 114,560 KB |
最終ジャッジ日時 | 2024-11-16 01:24:16 |
合計ジャッジ時間 | 3,284 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,368 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 43 ms
54,492 KB |
testcase_04 | RE | - |
testcase_05 | AC | 43 ms
55,364 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 44 ms
53,992 KB |
testcase_09 | AC | 44 ms
55,064 KB |
testcase_10 | AC | 97 ms
89,412 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 99 ms
88,956 KB |
testcase_15 | AC | 81 ms
80,276 KB |
testcase_16 | AC | 106 ms
92,376 KB |
testcase_17 | AC | 76 ms
79,904 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 154 ms
114,560 KB |
ソースコード
def main(): import sys from collections import defaultdict from math import sqrt, gcd input = sys.stdin.readline 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)%K] else: assert 0 nmax = int(sqrt(K)) div = [] div_append = div.append for d in range(1, nmax+1): if K%d == 0: div_append(d) div_append(K//d) if nmax ** 2 == K: div.pop() div_num = {} for d in div: div_num[d] = 0 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()