結果

問題 No.2132 1 or X Game
ユーザー KudeKude
提出日時 2022-11-25 22:07:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-02 04:39:39
合計ジャッジ時間 7,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 564 ms
76,068 KB
testcase_02 AC 568 ms
76,032 KB
testcase_03 AC 468 ms
76,104 KB
testcase_04 AC 487 ms
75,872 KB
testcase_05 AC 487 ms
76,124 KB
testcase_06 AC 477 ms
76,168 KB
testcase_07 AC 507 ms
76,416 KB
testcase_08 AC 531 ms
76,800 KB
testcase_09 AC 443 ms
76,032 KB
testcase_10 AC 472 ms
76,520 KB
testcase_11 AC 502 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
for _ in range(int(input())):
    n, x = map(int, input().split())
    n += 1
    if x % 2:
        print(n // 2 % mod)
    else:
        period = x + 3
        cnt = (period + 1) // 2
        ans = n // period * cnt
        n %= period
        if n <= x:
            ans += n // 2
        else:
            ans += x // 2 + 1
        print(ans % mod)
0