結果

問題 No.2963 Mecha DESU
ユーザー prin_kemkemprin_kemkem
提出日時 2024-11-16 16:35:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,538 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,960 KB
最終ジャッジ日時 2024-11-16 16:36:50
合計ジャッジ時間 43,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
80,384 KB
testcase_01 AC 108 ms
80,512 KB
testcase_02 AC 108 ms
80,128 KB
testcase_03 AC 106 ms
80,256 KB
testcase_04 AC 116 ms
80,384 KB
testcase_05 AC 107 ms
80,384 KB
testcase_06 AC 108 ms
80,256 KB
testcase_07 AC 107 ms
80,128 KB
testcase_08 AC 106 ms
80,000 KB
testcase_09 AC 106 ms
80,128 KB
testcase_10 AC 110 ms
80,256 KB
testcase_11 AC 108 ms
80,384 KB
testcase_12 AC 106 ms
80,256 KB
testcase_13 AC 1,529 ms
120,960 KB
testcase_14 AC 1,527 ms
120,832 KB
testcase_15 AC 1,455 ms
120,960 KB
testcase_16 AC 1,473 ms
120,832 KB
testcase_17 AC 1,508 ms
120,704 KB
testcase_18 AC 1,416 ms
120,960 KB
testcase_19 AC 1,452 ms
120,960 KB
testcase_20 AC 854 ms
108,288 KB
testcase_21 AC 287 ms
106,624 KB
testcase_22 AC 240 ms
87,040 KB
testcase_23 AC 167 ms
100,352 KB
testcase_24 AC 917 ms
102,528 KB
testcase_25 AC 882 ms
112,896 KB
testcase_26 AC 1,211 ms
106,880 KB
testcase_27 AC 633 ms
92,288 KB
testcase_28 AC 1,159 ms
118,016 KB
testcase_29 AC 898 ms
111,488 KB
testcase_30 AC 166 ms
82,560 KB
testcase_31 AC 457 ms
102,528 KB
testcase_32 AC 286 ms
85,376 KB
testcase_33 AC 968 ms
111,744 KB
testcase_34 AC 796 ms
116,096 KB
testcase_35 AC 358 ms
90,496 KB
testcase_36 AC 834 ms
103,680 KB
testcase_37 AC 229 ms
103,040 KB
testcase_38 AC 428 ms
87,680 KB
testcase_39 AC 983 ms
106,496 KB
testcase_40 AC 679 ms
91,904 KB
testcase_41 AC 1,004 ms
108,032 KB
testcase_42 AC 898 ms
109,056 KB
testcase_43 AC 1,300 ms
118,272 KB
testcase_44 AC 1,034 ms
113,152 KB
testcase_45 AC 1,147 ms
102,528 KB
testcase_46 AC 631 ms
98,816 KB
testcase_47 AC 833 ms
93,184 KB
testcase_48 AC 401 ms
93,696 KB
testcase_49 AC 746 ms
91,008 KB
testcase_50 AC 1,518 ms
120,448 KB
testcase_51 AC 1,538 ms
120,704 KB
testcase_52 AC 1,345 ms
120,576 KB
testcase_53 AC 1,260 ms
103,552 KB
testcase_54 AC 1,422 ms
103,808 KB
testcase_55 AC 105 ms
80,128 KB
testcase_56 AC 114 ms
80,256 KB
testcase_57 AC 159 ms
96,640 KB
testcase_58 AC 146 ms
103,168 KB
testcase_59 AC 106 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
# from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
# from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush, heappushpop
import math
import bisect
from pprint import pprint
from random import randint, shuffle, randrange
# from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

N, M, K = map(int, input().split())
A = Counter(map(int, input().split()))
C = [0]*(1+N)
for k, v in A.items():
    i = k
    while i <= N:
        C[i] += v
        i += k
ans = N
for c in C[1:]:
    ans -= pow(M-c, K, mod2) * pow(M, -K, mod2) % mod2
    ans %= mod2
print(ans)
0