結果
問題 | No.2709 1975 Powers |
ユーザー | 寝癖 |
提出日時 | 2024-03-31 16:59:00 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 467 bytes |
コンパイル時間 | 416 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 141,568 KB |
最終ジャッジ日時 | 2024-09-30 21:08:28 |
合計ジャッジ時間 | 30,295 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,352 KB |
testcase_01 | AC | 35 ms
52,072 KB |
testcase_02 | AC | 146 ms
137,088 KB |
testcase_03 | AC | 1,379 ms
138,368 KB |
testcase_04 | TLE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 99 ms
120,960 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 105 ms
122,624 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 330 ms
137,088 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
ソースコード
from itertools import combinations N, P, Q = map(int, input().split()) A = list(map(int, input().split())) M = max(A)+1 pow_10, pow_9, pow_7, pow_5 = [1]*M, [1]*M, [1]*M, [1]*M for i in range(M-1): pow_10[i+1] = pow_10[i]*10 % P pow_9[i+1] = pow_9[i]*9 % P pow_7[i+1] = pow_7[i]*7 % P pow_5[i+1] = pow_5[i]*5 % P ans = 0 for a, b, c, d in combinations(A, 4): if (pow_10[a] + pow_9[b] + pow_7[c] + pow_5[d]) % P == Q: ans += 1 print(ans)