結果

問題 No.2834 Work to Play
ユーザー ねしんねしん
提出日時 2024-06-18 13:13:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 848,196 KB
最終ジャッジ日時 2024-06-18 16:03:10
合計ジャッジ時間 12,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 90 ms
96,848 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 77 ms
85,924 KB
testcase_07 AC 71 ms
79,040 KB
testcase_08 WA -
testcase_09 AC 63 ms
74,792 KB
testcase_10 AC 75 ms
83,348 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 61 ms
72,692 KB
testcase_14 AC 54 ms
65,028 KB
testcase_15 AC 83 ms
90,980 KB
testcase_16 AC 77 ms
85,484 KB
testcase_17 WA -
testcase_18 AC 71 ms
82,644 KB
testcase_19 WA -
testcase_20 AC 79 ms
88,604 KB
testcase_21 AC 62 ms
72,840 KB
testcase_22 AC 87 ms
95,352 KB
testcase_23 WA -
testcase_24 AC 81 ms
89,176 KB
testcase_25 AC 86 ms
90,984 KB
testcase_26 AC 68 ms
76,740 KB
testcase_27 WA -
testcase_28 AC 51 ms
64,576 KB
testcase_29 AC 55 ms
67,792 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 311 ms
223,504 KB
testcase_34 AC 362 ms
246,780 KB
testcase_35 WA -
testcase_36 AC 269 ms
223,876 KB
testcase_37 WA -
testcase_38 AC 309 ms
223,780 KB
testcase_39 AC 263 ms
223,752 KB
testcase_40 AC 346 ms
223,504 KB
testcase_41 WA -
testcase_42 AC 441 ms
264,876 KB
testcase_43 WA -
testcase_44 AC 171 ms
165,252 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)
0