結果

問題 No.2834 Work to Play
ユーザー ねしんねしん
提出日時 2024-06-18 15:51:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 535 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 848,176 KB
最終ジャッジ日時 2024-06-18 16:03:14
合計ジャッジ時間 11,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
74,376 KB
testcase_01 AC 88 ms
97,416 KB
testcase_02 AC 75 ms
81,516 KB
testcase_03 AC 51 ms
63,776 KB
testcase_04 AC 69 ms
79,576 KB
testcase_05 AC 57 ms
68,004 KB
testcase_06 AC 74 ms
86,456 KB
testcase_07 AC 70 ms
79,180 KB
testcase_08 AC 63 ms
74,016 KB
testcase_09 AC 64 ms
73,496 KB
testcase_10 AC 74 ms
83,444 KB
testcase_11 AC 87 ms
94,264 KB
testcase_12 AC 54 ms
66,096 KB
testcase_13 AC 59 ms
71,716 KB
testcase_14 AC 51 ms
65,216 KB
testcase_15 AC 82 ms
92,164 KB
testcase_16 AC 72 ms
85,444 KB
testcase_17 AC 58 ms
73,176 KB
testcase_18 AC 67 ms
81,220 KB
testcase_19 AC 76 ms
87,480 KB
testcase_20 AC 77 ms
89,000 KB
testcase_21 AC 59 ms
72,664 KB
testcase_22 AC 83 ms
96,264 KB
testcase_23 AC 49 ms
63,220 KB
testcase_24 AC 76 ms
88,692 KB
testcase_25 AC 78 ms
91,372 KB
testcase_26 AC 66 ms
77,340 KB
testcase_27 AC 67 ms
79,664 KB
testcase_28 AC 49 ms
64,408 KB
testcase_29 AC 52 ms
66,832 KB
testcase_30 AC 477 ms
264,696 KB
testcase_31 AC 118 ms
133,028 KB
testcase_32 AC 464 ms
264,832 KB
testcase_33 AC 299 ms
223,492 KB
testcase_34 AC 372 ms
246,964 KB
testcase_35 AC 355 ms
223,508 KB
testcase_36 AC 259 ms
223,644 KB
testcase_37 AC 204 ms
208,052 KB
testcase_38 AC 296 ms
223,696 KB
testcase_39 AC 263 ms
223,504 KB
testcase_40 AC 352 ms
223,716 KB
testcase_41 AC 383 ms
246,480 KB
testcase_42 AC 459 ms
264,964 KB
testcase_43 AC 319 ms
223,624 KB
testcase_44 AC 160 ms
164,916 KB
testcase_45 MLE -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,A,K=list(map(int,input().split()))
C=defaultdict(int)

def C_Num(N,A):
	for i in range(1,N+1):
		C[i]=A*i

C_Num(N,A)
ans=0
MOD=998244353

def Remove1(K):
	cnt=0
	for i in range(1,N+1):
		M=C[i]//K
		cnt=(cnt+M*i)%MOD
		C[i]=C[i]%K
	return cnt

ans=Remove1(K)

def Remove2(K):
	cnt=0
	now=0
	ok=0
	for i in range(N,0,-1):
		if ok==0 and C[i]!=0:
			cnt+=i
			ok=1
			now=C[i]
		elif ok==1:
			now+=C[i]
			if now>K:
				now-=K
				cnt+=i
	return cnt%MOD
ans=(ans+Remove2(K))%MOD
print((ans*2)%MOD)
0