結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー _matumo__matumo_
提出日時 2020-03-12 19:08:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 302 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 144,256 KB
最終ジャッジ日時 2024-11-19 04:11:01
合計ジャッジ時間 32,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,088 KB
testcase_01 AC 43 ms
141,056 KB
testcase_02 AC 50 ms
63,232 KB
testcase_03 AC 44 ms
144,256 KB
testcase_04 AC 44 ms
57,088 KB
testcase_05 AC 46 ms
137,344 KB
testcase_06 AC 48 ms
63,104 KB
testcase_07 AC 49 ms
144,128 KB
testcase_08 AC 45 ms
57,472 KB
testcase_09 AC 44 ms
131,840 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,477 ms
79,744 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
F,*pB=input().split()
pb=[int(s)%K for s in pB]
sm=0
if F=='+':
    pa=[(int(input())+K-1)%K+1 for _ in range(N)]
    for n in pa:
        sm += pb.count(K-n)
else:
    for _ in range(N):
        n=int(input())%K
        for m in pb:
            sm += n*m%K==0
print(sm)
0