結果
問題 | No.2834 Work to Play |
ユーザー | ねしん |
提出日時 | 2024-06-18 15:27:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 848,104 KB |
最終ジャッジ日時 | 2024-06-18 16:03:06 |
合計ジャッジ時間 | 11,450 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 94 ms
102,332 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 80 ms
87,876 KB |
testcase_07 | AC | 72 ms
80,388 KB |
testcase_08 | WA | - |
testcase_09 | AC | 66 ms
75,788 KB |
testcase_10 | AC | 76 ms
85,200 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 64 ms
72,836 KB |
testcase_14 | AC | 55 ms
66,268 KB |
testcase_15 | AC | 86 ms
96,548 KB |
testcase_16 | AC | 81 ms
87,200 KB |
testcase_17 | WA | - |
testcase_18 | AC | 73 ms
84,816 KB |
testcase_19 | WA | - |
testcase_20 | AC | 83 ms
90,932 KB |
testcase_21 | AC | 66 ms
73,668 KB |
testcase_22 | AC | 104 ms
104,568 KB |
testcase_23 | WA | - |
testcase_24 | AC | 83 ms
90,096 KB |
testcase_25 | AC | 86 ms
93,736 KB |
testcase_26 | AC | 70 ms
80,408 KB |
testcase_27 | WA | - |
testcase_28 | AC | 56 ms
66,732 KB |
testcase_29 | AC | 58 ms
68,928 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 313 ms
223,844 KB |
testcase_34 | AC | 385 ms
246,900 KB |
testcase_35 | WA | - |
testcase_36 | AC | 284 ms
223,648 KB |
testcase_37 | WA | - |
testcase_38 | AC | 312 ms
223,920 KB |
testcase_39 | AC | 271 ms
223,724 KB |
testcase_40 | AC | 351 ms
223,800 KB |
testcase_41 | WA | - |
testcase_42 | AC | 461 ms
264,900 KB |
testcase_43 | WA | - |
testcase_44 | AC | 171 ms
165,320 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 | -- | - |
ソースコード
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)