{"problem":{"name":"Wine Thief","description":{"content":"**Problems F and F2 have the same Problem Statement but different Constraints and Time Limits.** There are $N$ bottles of wine in Takahashi's cellar, arranged in a row from left to right.   The tastin","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":3000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"arc120_f"},"statements":[{"statement_type":"Markdown","content":"**Problems F and F2 have the same Problem Statement but different Constraints and Time Limits.**\nThere are $N$ bottles of wine in Takahashi's cellar, arranged in a row from left to right.  \nThe tastiness of the $i$\\-th bottle from the left is $A_i$.  \nAoki will choose $K$ bottles from these $N$ and steal them. However, Takahashi is careful enough to notice the theft if the following condition is satisfied:\n\n*   There exist $D$ consecutive bottles such that two or more of them are stolen. ($D = 2$ in this problem.)\n\nFor every way of stealing bottles without getting noticed by Takahashi, find the total tastiness of the bottles stolen, and then find the sum of all those values.  \nSince the sum can be enormous, print it modulo $998244353$.\n\n## Constraints\n\n*   $D = 2$\n*   $2 \\le N \\le 3 \\times 10^5$\n*   $1 \\le K \\le \\left\\lceil \\frac{N}{D} \\right\\rceil$ ($\\left\\lceil x \\right\\rceil$ represents the smallest integer not less than $x$.)\n*   $1 \\le A_i \\lt 998244353$\n*   All values in input are integers.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$ $K$ $D$\n$A_1$ $A_2$ $A_3$ $\\dots$ $A_N$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"arc120_f","tags":[],"sample_group":[["4 2 2\n1 4 2 3","14\n\nThe possible ways to steal bottles and the total tastiness for each of them are as follows:\n\n*   Steal the $1$\\-st and $3$\\-rd bottles from the left, for the total tastiness of $1 + 2 = 3$.\n*   Steal the $1$\\-st and $4$\\-th bottles from the left, for the total tastiness of $1 + 3 = 4$.\n*   Steal the $2$\\-nd and $4$\\-th bottles from the left, for the total tastiness of $4 + 3 = 7$.\n\nThus, the answer is $3 + 4 + 7 = 14$."],["5 3 2\n4 7 5 3 8","17\n\nThere is no choice but to steal the $1$\\-st, $3$\\-rd, and $5$\\-th bottles."],["12 4 2\n107367523 266126484 149762920 57456082 857431610 400422663 768881284 494753774 152155823 740238343 871191740 450057094","136993014"]],"created_at":"2026-03-03 11:01:14"}}