結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | freecss00 |
提出日時 | 2020-02-14 23:28:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 513 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 57,168 KB |
最終ジャッジ日時 | 2024-11-16 01:41:33 |
合計ジャッジ時間 | 17,895 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,000 KB |
testcase_01 | AC | 31 ms
31,504 KB |
testcase_02 | AC | 32 ms
16,128 KB |
testcase_03 | AC | 31 ms
43,740 KB |
testcase_04 | AC | 32 ms
16,000 KB |
testcase_05 | AC | 32 ms
28,608 KB |
testcase_06 | AC | 33 ms
16,128 KB |
testcase_07 | AC | 32 ms
43,888 KB |
testcase_08 | AC | 32 ms
16,000 KB |
testcase_09 | AC | 31 ms
10,752 KB |
testcase_10 | AC | 162 ms
19,056 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 284 ms
21,808 KB |
testcase_15 | AC | 214 ms
15,960 KB |
testcase_16 | AC | 234 ms
21,660 KB |
testcase_17 | AC | 150 ms
15,536 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 372 ms
57,168 KB |
ソースコード
import math from collections import Counter n, m, k = map(int, input().split()) line = input().split() op = line[0] B = list(map(int, line[1:])) A = [int(input()) for _ in range(n)] if op == '+': mod = [a % k for a in A] modcnt = Counter(mod) ans = sum([modcnt[(k - (b%k)) % k] for b in B]) else: gcda = [math.gcd(k,a) for a in A] gcdb = [math.gcd(k,b) for b in B] ans = 0 for ga in gcda: for gb in gcdb: if (ga * gb) % k == 0: ans += 1 print(ans)