結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー titiatitia
提出日時 2020-02-14 22:04:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 802 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 201,944 KB
最終ジャッジ日時 2024-11-16 00:45:08
合計ジャッジ時間 10,881 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,056 KB
testcase_01 AC 38 ms
141,152 KB
testcase_02 AC 39 ms
59,148 KB
testcase_03 AC 42 ms
55,436 KB
testcase_04 AC 44 ms
60,536 KB
testcase_05 AC 43 ms
55,076 KB
testcase_06 AC 39 ms
53,572 KB
testcase_07 AC 38 ms
53,792 KB
testcase_08 AC 42 ms
54,812 KB
testcase_09 AC 42 ms
54,088 KB
testcase_10 AC 97 ms
91,748 KB
testcase_11 AC 84 ms
87,368 KB
testcase_12 TLE -
testcase_13 AC 78 ms
85,684 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 109 ms
93,416 KB
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 159 ms
201,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,K=map(int,input().split())
B=list(input().split())
A=[int(input()) for i in range(N)]

ANS=0

if B[0]=="+":
    from collections import Counter
    B=list(map(int,B[1:]))
    A=Counter([a%K for a in A])
    B=Counter([b%K for b in B])

    for c in A:
        ANS+=A[c]*B[K-c]

    print(ANS)
    sys.exit()
        
B=list(map(int,B[1:]))

import math
x=K
xr=math.ceil(math.sqrt(x))

LIST=[]
for i in range(1,xr+1):
    if x%i==0:
        LIST.append(i)
        LIST.append(x//i)

L=sorted(set(LIST),reverse=True)

LEN=len(L)

SC=[0]*LEN
for i in range(LEN):
    l=L[i]
    for b in B:
        if b%l==0:
            SC[i]+=1

for a in A:
    for i in range(LEN):
        l=L[i]
        if a%l==0:
            ANS+=SC[LEN-i-1]
            break

print(ANS)

0