結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | qib |
提出日時 | 2023-04-19 03:33:03 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 557 bytes |
コンパイル時間 | 467 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 121,356 KB |
最終ジャッジ日時 | 2024-10-14 03:32:20 |
合計ジャッジ時間 | 5,144 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
58,624 KB |
testcase_01 | AC | 45 ms
53,504 KB |
testcase_02 | AC | 55 ms
59,904 KB |
testcase_03 | AC | 46 ms
54,144 KB |
testcase_04 | AC | 51 ms
60,160 KB |
testcase_05 | AC | 47 ms
54,272 KB |
testcase_06 | AC | 54 ms
61,184 KB |
testcase_07 | AC | 55 ms
61,056 KB |
testcase_08 | AC | 45 ms
54,528 KB |
testcase_09 | AC | 45 ms
53,632 KB |
testcase_10 | AC | 124 ms
91,392 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
from collections import defaultdict import math n, m, k = map(int, input().split()) op, *b = list(input().split()) cnt = defaultdict(int) ans = 0 if op == "+": for x in b: cnt[int(x) % k] += 1 for _ in range(n): ai = int(input()) ans += cnt[(- ai) % k] elif op == "*": for x in b: x = int(x) for d in range(1, int(math.sqrt(x)) + 1): if x % d == 0: if d != x // d: cnt[x // d] += 1 cnt[d] += 1 for _ in range(n): ai = int(input()) x = k // math.gcd(ai, k) ans += cnt[x] print(ans)