結果

問題 No.2834 Work to Play
ユーザー ねしんねしん
提出日時 2024-06-18 15:49:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,206 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 75,492 KB
最終ジャッジ日時 2024-06-18 16:09:37
合計ジャッジ時間 7,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,360 KB
testcase_01 AC 36 ms
52,276 KB
testcase_02 AC 38 ms
54,000 KB
testcase_03 AC 39 ms
53,280 KB
testcase_04 AC 38 ms
53,796 KB
testcase_05 AC 35 ms
53,168 KB
testcase_06 AC 36 ms
52,700 KB
testcase_07 AC 37 ms
52,708 KB
testcase_08 AC 40 ms
54,124 KB
testcase_09 AC 39 ms
53,372 KB
testcase_10 AC 36 ms
52,348 KB
testcase_11 AC 37 ms
52,540 KB
testcase_12 AC 36 ms
52,904 KB
testcase_13 AC 36 ms
52,276 KB
testcase_14 AC 37 ms
53,420 KB
testcase_15 AC 35 ms
53,740 KB
testcase_16 AC 37 ms
54,048 KB
testcase_17 AC 36 ms
53,436 KB
testcase_18 AC 36 ms
53,400 KB
testcase_19 AC 36 ms
53,724 KB
testcase_20 AC 35 ms
52,972 KB
testcase_21 AC 37 ms
52,552 KB
testcase_22 AC 36 ms
52,456 KB
testcase_23 AC 36 ms
52,780 KB
testcase_24 AC 35 ms
52,800 KB
testcase_25 AC 36 ms
53,252 KB
testcase_26 AC 36 ms
53,508 KB
testcase_27 AC 37 ms
53,208 KB
testcase_28 AC 36 ms
53,372 KB
testcase_29 AC 37 ms
53,368 KB
testcase_30 AC 36 ms
52,736 KB
testcase_31 AC 36 ms
52,800 KB
testcase_32 AC 37 ms
52,820 KB
testcase_33 AC 38 ms
52,996 KB
testcase_34 AC 37 ms
53,492 KB
testcase_35 AC 36 ms
53,568 KB
testcase_36 AC 36 ms
53,628 KB
testcase_37 AC 36 ms
53,060 KB
testcase_38 AC 36 ms
52,816 KB
testcase_39 AC 37 ms
52,340 KB
testcase_40 AC 37 ms
52,888 KB
testcase_41 AC 37 ms
51,952 KB
testcase_42 AC 36 ms
53,168 KB
testcase_43 AC 36 ms
52,900 KB
testcase_44 AC 36 ms
52,628 KB
testcase_45 AC 101 ms
75,092 KB
testcase_46 AC 61 ms
75,264 KB
testcase_47 AC 88 ms
75,492 KB
testcase_48 AC 78 ms
75,004 KB
testcase_49 AC 53 ms
72,572 KB
testcase_50 AC 59 ms
75,236 KB
testcase_51 AC 37 ms
53,152 KB
testcase_52 AC 109 ms
75,076 KB
testcase_53 AC 101 ms
74,536 KB
testcase_54 AC 79 ms
74,736 KB
testcase_55 AC 36 ms
52,688 KB
testcase_56 AC 37 ms
52,752 KB
testcase_57 AC 36 ms
52,300 KB
testcase_58 AC 55 ms
73,016 KB
testcase_59 AC 52 ms
66,972 KB
testcase_60 AC 64 ms
75,064 KB
testcase_61 AC 61 ms
74,724 KB
testcase_62 AC 79 ms
74,952 KB
testcase_63 AC 104 ms
75,252 KB
testcase_64 AC 70 ms
75,012 KB
testcase_65 AC 51 ms
66,640 KB
testcase_66 AC 50 ms
65,420 KB
testcase_67 AC 84 ms
75,184 KB
testcase_68 AC 80 ms
74,744 KB
testcase_69 AC 52 ms
68,736 KB
testcase_70 AC 65 ms
74,796 KB
testcase_71 AC 73 ms
75,204 KB
testcase_72 AC 52 ms
69,288 KB
testcase_73 AC 86 ms
75,020 KB
testcase_74 AC 54 ms
68,392 KB
testcase_75 AC 99 ms
74,616 KB
testcase_76 AC 67 ms
75,288 KB
testcase_77 AC 48 ms
66,436 KB
testcase_78 AC 109 ms
74,824 KB
testcase_79 AC 91 ms
74,924 KB
testcase_80 AC 51 ms
66,212 KB
testcase_81 AC 106 ms
75,160 KB
testcase_82 AC 39 ms
53,688 KB
testcase_83 AC 85 ms
75,344 KB
testcase_84 AC 54 ms
71,456 KB
testcase_85 AC 77 ms
74,812 KB
testcase_86 AC 86 ms
74,868 KB
testcase_87 AC 72 ms
74,936 KB
testcase_88 AC 38 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,K=list(map(int,input().split()))
MOD=998244353
inv6=pow(6,MOD-2,MOD)
inv2=pow(2,MOD-2,MOD)
def gcd(A,B):
  if B==0:
    return A
  else:
    return gcd(B,A%B)
g=gcd(A,K)
A=A//g
K=K//g

def Remove1(N,A,K):
  cnt=0
  for b in range(min(K,N+1)):
    r=(N-b)//K
    C=(b*A)//K
    cnt=(cnt+K*A*inv6*r*(r+1)*(2*r+1)+(b*A+K*C)*inv2*r*(r+1)+b*C*(r+1))%MOD
    #print(b,cnt,r)
  return cnt
  
def Remove2(N,A,K):
  c=0
  M=0
  now=0
  ok=1
  ok2=0
  for i in range(N,N-2*K,-1):
    if i<=0:
      ok=0
      break
    if ok2==0:
      if (A*i)%K!=0:
        ok2=1
        now=(A*i)%K
        c+=1
        M-=(N-i)
    else:
      now=(now+(A*i)%K)
      if now>K:
        now-=K
        c+=1
        M-=(N-i)
  if ok==0:
    return 0
  else:
    r=N//(2*K)-1
    #print(r,c,M)
    return ((N*c+M)*(r+1)-2*K*c*inv2*r*(r+1))%MOD
    
def Remove3(N,A,K):
	cnt=0
	now=0
	ok=0
	for i in range(N,0,-1):
		if ok==0 and (A*i)%K!=0:
			cnt+=i
			ok=1
			now=(A*i)%K
		elif ok==1:
			now+=(A*i)%K
			if now==K:
				now=0
				ok=0
			if now>K:
				now-=K
				cnt+=i
	return cnt%MOD
#print(Remove1(N,A,K),Remove2(N,A,K),Remove3(N%(2*K),A,K))	
ans=(Remove1(N,A,K)+Remove2(N,A,K)+Remove3(N%(2*K),A,K))%MOD
print((ans*2)%MOD)
0