結果

問題 No.2834 Work to Play
ユーザー 👑 rin204rin204
提出日時 2024-08-02 23:17:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,199 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 78,696 KB
最終ジャッジ日時 2024-08-02 23:17:18
合計ジャッジ時間 8,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
52,992 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
53,440 KB
testcase_07 AC 39 ms
54,700 KB
testcase_08 WA -
testcase_09 AC 38 ms
54,712 KB
testcase_10 AC 36 ms
53,724 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 35 ms
53,912 KB
testcase_14 AC 34 ms
53,560 KB
testcase_15 AC 33 ms
52,472 KB
testcase_16 AC 35 ms
54,544 KB
testcase_17 WA -
testcase_18 AC 35 ms
54,160 KB
testcase_19 WA -
testcase_20 AC 35 ms
52,884 KB
testcase_21 AC 36 ms
54,880 KB
testcase_22 AC 35 ms
53,612 KB
testcase_23 WA -
testcase_24 AC 35 ms
53,008 KB
testcase_25 AC 36 ms
53,544 KB
testcase_26 AC 36 ms
53,792 KB
testcase_27 WA -
testcase_28 AC 36 ms
53,144 KB
testcase_29 AC 37 ms
53,084 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 33 ms
52,964 KB
testcase_34 AC 36 ms
53,440 KB
testcase_35 WA -
testcase_36 AC 34 ms
53,376 KB
testcase_37 WA -
testcase_38 AC 36 ms
54,164 KB
testcase_39 AC 35 ms
53,564 KB
testcase_40 AC 36 ms
53,980 KB
testcase_41 WA -
testcase_42 AC 34 ms
52,860 KB
testcase_43 WA -
testcase_44 AC 34 ms
53,024 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 120 ms
78,696 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 117 ms
78,456 KB
testcase_51 WA -
testcase_52 AC 131 ms
78,084 KB
testcase_53 WA -
testcase_54 AC 127 ms
78,256 KB
testcase_55 AC 37 ms
52,280 KB
testcase_56 AC 35 ms
52,864 KB
testcase_57 AC 34 ms
53,040 KB
testcase_58 AC 69 ms
75,856 KB
testcase_59 AC 73 ms
75,752 KB
testcase_60 AC 90 ms
77,208 KB
testcase_61 AC 123 ms
77,144 KB
testcase_62 AC 102 ms
77,392 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 121 ms
78,288 KB
testcase_70 WA -
testcase_71 AC 84 ms
76,532 KB
testcase_72 AC 62 ms
74,368 KB
testcase_73 AC 107 ms
77,288 KB
testcase_74 WA -
testcase_75 WA -
testcase_76 AC 75 ms
76,156 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 74 ms
76,496 KB
testcase_81 WA -
testcase_82 WA -
testcase_83 WA -
testcase_84 AC 115 ms
78,504 KB
testcase_85 WA -
testcase_86 AC 101 ms
77,852 KB
testcase_87 WA -
testcase_88 AC 37 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n, a, k = map(int, input().split())
ans = 0

for i in range(1, k + 1):
    m = (n - i) // k + 1
    c = (a * i) // k

    m -= 1
    ans += a * k * m * (m + 1) * (2 * m + 1) // 6
    ans += (c * k + i * a) * m * (m + 1) // 2
    ans += c * i * (m + 1)
    ans %= MOD

aa = a
if n > 2 * k:
    add = n % (2 * k)
    d = n // (2 * k)
    A = [a * i % k for i in range(add + 1, 2 * k + add + 1)]
    assert sum(A) % k == 0
    tot = 0
    for i in range(2 * k - 1, -1, -1):
        a = A[i]
        if tot != 0:
            c = min(a, k - tot)
            a -= c
            tot += c
            if tot == k:
                tot = 0
            else:
                continue

        c = (a + k - 1) // k
        s = add + i
        t = s + (d - 1) * 2 * k
        ans += d * (s + t + 2) // 2 * c

        tot = a % k
        ans %= MOD

    n %= 2 * k

A = [aa * i % k for i in range(1, n + 1)]
tot = 0
for i in range(n, 0, -1):
    a = A[i - 1]
    if tot != 0:
        c = min(a, k - tot)
        a -= c
        tot += c
        if tot == k:
            tot = 0
        else:
            continue
    ans += (a + k - 1) // k * i
    tot = a % k
    ans %= MOD

ans *= 2
print(ans)
0