結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | ayaoni |
提出日時 | 2020-11-24 18:26:46 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,242 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 111,656 KB |
最終ジャッジ日時 | 2024-07-23 18:43:56 |
合計ジャッジ時間 | 2,612 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
54,132 KB |
testcase_01 | WA | - |
testcase_02 | AC | 40 ms
52,652 KB |
testcase_03 | AC | 40 ms
54,264 KB |
testcase_04 | AC | 40 ms
52,876 KB |
testcase_05 | AC | 39 ms
54,084 KB |
testcase_06 | AC | 39 ms
52,396 KB |
testcase_07 | WA | - |
testcase_08 | AC | 39 ms
52,804 KB |
testcase_09 | AC | 39 ms
52,940 KB |
testcase_10 | AC | 86 ms
86,604 KB |
testcase_11 | AC | 99 ms
87,980 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 92 ms
84,680 KB |
testcase_15 | AC | 76 ms
79,484 KB |
testcase_16 | AC | 99 ms
89,088 KB |
testcase_17 | AC | 74 ms
79,448 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 132 ms
111,656 KB |
ソースコード
import sys from math import gcd def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LS(): return list(sys.stdin.readline().rstrip().split()) N,M,K = MI() X = LS() op = X[0] B = [int(X[i]) for i in range(1,M+1)] A = [I() for _ in range(N)] if op == '+': count_A = {} count_B = {} for i in range(N): a = A[i] % K if a in count_A.keys(): count_A[a] += 1 else: count_A[a] = 1 for i in range(M): b = B[i] % K if b in count_B.keys(): count_B[b] += 1 else: count_B[b] = 1 ans = 0 for i in count_A.keys(): j = (K-i) % K if j in count_B.keys(): ans += count_A[i]*count_B[j] else: count_A = {} count_B = {} for a in A: g = gcd(a,K) if g in count_A.keys(): count_A[g] += 1 else: count_A[g] = 1 for b in B: g = gcd(b,K) if g in count_B.keys(): count_B[g] += 1 else: count_B[g] = 1 ans = 0 for d in count_A.keys(): e = K//d if e in count_B.keys(): ans += count_A[d]*count_B[e] print(ans)