結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | titia |
提出日時 | 2020-02-14 22:01:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 55,256 KB |
最終ジャッジ日時 | 2024-11-16 00:41:39 |
合計ジャッジ時間 | 12,372 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,256 KB |
testcase_01 | AC | 30 ms
37,664 KB |
testcase_02 | AC | 31 ms
16,256 KB |
testcase_03 | AC | 29 ms
37,404 KB |
testcase_04 | AC | 31 ms
17,828 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,880 KB |
testcase_07 | AC | 30 ms
10,880 KB |
testcase_08 | AC | 31 ms
10,880 KB |
testcase_09 | AC | 31 ms
10,880 KB |
testcase_10 | AC | 147 ms
19,324 KB |
testcase_11 | AC | 217 ms
20,348 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 129 ms
17,520 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 236 ms
20,836 KB |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 403 ms
55,256 KB |
ソースコード
import sys N,M,K=map(int,input().split()) B=list(input().split()) A=[int(input()) for i in range(N)] ANS=0 from collections import Counter if B[0]=="+": 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) SC=[0]*len(L) for i in range(len(L)): 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=L[i] if a%l==0: ANS+=SC[len(L)-i-1] break print(ANS)