結果

問題 No.2834 Work to Play
ユーザー ねしんねしん
提出日時 2024-06-18 15:21:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 787,868 KB
最終ジャッジ日時 2024-06-18 16:03:03
合計ジャッジ時間 12,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 91 ms
101,236 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 77 ms
87,884 KB
testcase_07 AC 68 ms
80,592 KB
testcase_08 WA -
testcase_09 AC 63 ms
75,572 KB
testcase_10 AC 73 ms
84,388 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 60 ms
73,024 KB
testcase_14 AC 53 ms
66,420 KB
testcase_15 AC 83 ms
95,752 KB
testcase_16 AC 75 ms
86,136 KB
testcase_17 WA -
testcase_18 AC 70 ms
82,752 KB
testcase_19 WA -
testcase_20 AC 80 ms
89,920 KB
testcase_21 AC 61 ms
73,912 KB
testcase_22 AC 99 ms
104,088 KB
testcase_23 WA -
testcase_24 AC 79 ms
90,520 KB
testcase_25 AC 84 ms
91,888 KB
testcase_26 AC 69 ms
80,512 KB
testcase_27 WA -
testcase_28 AC 53 ms
65,632 KB
testcase_29 AC 57 ms
67,968 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 310 ms
223,460 KB
testcase_34 AC 404 ms
246,476 KB
testcase_35 WA -
testcase_36 AC 284 ms
223,460 KB
testcase_37 WA -
testcase_38 AC 314 ms
223,688 KB
testcase_39 AC 272 ms
223,556 KB
testcase_40 AC 342 ms
223,112 KB
testcase_41 WA -
testcase_42 AC 488 ms
264,828 KB
testcase_43 WA -
testcase_44 AC 163 ms
164,720 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=0
				ok=0
			if now>K:
				now-=K
				cnt+=i
	return cnt%MOD
ans=(ans+Remove2(K))%MOD
print(ans*2)
0