結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー _matumo__matumo_
提出日時 2020-03-12 19:12:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 324 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 39,568 KB
最終ジャッジ日時 2024-11-19 04:12:52
合計ジャッジ時間 34,471 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 AC 30 ms
28,076 KB
testcase_02 AC 32 ms
17,572 KB
testcase_03 AC 30 ms
27,176 KB
testcase_04 AC 30 ms
17,444 KB
testcase_05 AC 32 ms
32,336 KB
testcase_06 AC 30 ms
17,700 KB
testcase_07 AC 31 ms
17,576 KB
testcase_08 AC 30 ms
17,576 KB
testcase_09 AC 29 ms
30,040 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
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:
        for m in pb:
            if m+n==K:  sm+=1
else:
    for _ in range(N):
        n=int(input())%K
        for m in pb:
            sm += n*m%K==0
print(sm)
0