結果
問題 | No.2709 1975 Powers |
ユーザー | KDKJ |
提出日時 | 2024-04-30 00:26:35 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,319 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 443,904 KB |
最終ジャッジ日時 | 2024-11-19 10:16:36 |
合計ジャッジ時間 | 44,786 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 145 ms
93,824 KB |
testcase_01 | AC | 149 ms
331,288 KB |
testcase_02 | AC | 599 ms
160,640 KB |
testcase_03 | AC | 1,938 ms
191,008 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | AC | 973 ms
137,344 KB |
testcase_07 | AC | 281 ms
354,176 KB |
testcase_08 | AC | 1,512 ms
216,576 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 282 ms
122,880 KB |
testcase_11 | AC | 424 ms
118,912 KB |
testcase_12 | AC | 1,008 ms
193,664 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 811 ms
148,480 KB |
testcase_15 | AC | 1,300 ms
207,544 KB |
testcase_16 | AC | 1,770 ms
163,264 KB |
testcase_17 | AC | 318 ms
120,224 KB |
testcase_18 | AC | 1,084 ms
197,176 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 562 ms
155,208 KB |
testcase_21 | AC | 1,518 ms
209,112 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
ソースコード
from heapq import heappush, heappop, heapify import sys from collections import defaultdict, deque,Counter from math import ceil, floor, sqrt, factorial,gcd from itertools import permutations, combinations,product from bisect import bisect_left, bisect_right from copy import deepcopy from functools import lru_cache #@lru_cache(maxsize=None) from fractions import Fraction sys.setrecursionlimit(10**6) # input = sys.stdin.readline vector1 = [[0, -1], [1, 0], [0, 1], [-1, 0]] vector2 = [[0, 1], [1, 0], [-1, 0], [0, -1], [1,-1], [-1, 1], [1, 1], [-1, -1]] from copy import deepcopy def main(): N,P,Q = map(int,input().split()) A = list(map(int,input().split())) A.sort() array = [[0 for i in range(P)]] for i in range(N): m = pow(5,A[i],P) tmp = deepcopy(array[-1]) tmp[m] += 1 array.append(tmp) ans = 0 #print(array) for i in range(N-3): for j in range(i+1,N-2): if A[i] == A[j]: continue for k in range(j+1,N-1): if A[j] == A[k]: continue t = (pow(10,A[i],P) + pow(9,A[j],P) + pow(7,A[k],P))%P t = (Q-t)%P ans += array[-1][t]-array[k+1][t] print(ans) if __name__ == '__main__': main()