結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー vwxyzvwxyz
提出日時 2023-07-15 04:56:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 874 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 119,392 KB
最終ジャッジ日時 2024-09-16 13:26:00
合計ジャッジ時間 9,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,608 KB
testcase_01 AC 40 ms
54,704 KB
testcase_02 AC 40 ms
54,572 KB
testcase_03 AC 39 ms
54,304 KB
testcase_04 AC 44 ms
60,288 KB
testcase_05 AC 44 ms
55,564 KB
testcase_06 AC 40 ms
55,900 KB
testcase_07 AC 41 ms
54,808 KB
testcase_08 AC 40 ms
54,844 KB
testcase_09 AC 40 ms
55,740 KB
testcase_10 AC 95 ms
87,808 KB
testcase_11 AC 95 ms
86,888 KB
testcase_12 TLE -
testcase_13 AC 85 ms
83,984 KB
testcase_14 AC 93 ms
85,044 KB
testcase_15 AC 78 ms
79,588 KB
testcase_16 AC 110 ms
87,140 KB
testcase_17 AC 73 ms
79,236 KB
testcase_18 TLE -
testcase_19 AC 1,446 ms
82,636 KB
testcase_20 AC 162 ms
119,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict
from math import gcd as GCD

def Divisors(N):
    divisors=[]
    for i in range(1,N+1):
        if i**2>=N:
            break
        elif N%i==0:
            divisors.append(i)
    if i**2==N:
        divisors+=[i]+[N//i for i in divisors[::-1]]
    else:
        divisors+=[N//i for i in divisors[::-1]]
    return divisors

N,M,K=map(int,readline().split())
op,*B=readline().split()
for m in range(M):
    B[m]=int(B[m])
A=[int(readline()) for n in range(N)]
if op=="+":
    cnt=defaultdict(int)
    for b in B:
        cnt[b%K]+=1
    ans=0
    for a in A:
        ans+=cnt[(-a)%K]
else:
    cnt=defaultdict(int)
    D=Divisors(K)
    for b in B:
        for d in D:
            if b%d==0:
                cnt[d]+=1
    ans=0
    for a in A:
        g=GCD(a,K)
        ans+=cnt[K//g]
print(ans)
0