結果

問題 No.2132 1 or X Game
ユーザー kakel-sankakel-san
提出日時 2023-09-26 00:15:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 113,344 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-07-18 19:37:40
合計ジャッジ時間 7,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
19,200 KB
testcase_01 AC 332 ms
32,000 KB
testcase_02 AC 345 ms
32,000 KB
testcase_03 AC 269 ms
32,128 KB
testcase_04 AC 349 ms
32,256 KB
testcase_05 AC 340 ms
31,872 KB
testcase_06 AC 340 ms
31,872 KB
testcase_07 AC 344 ms
31,872 KB
testcase_08 AC 342 ms
31,744 KB
testcase_09 AC 229 ms
27,520 KB
testcase_10 AC 310 ms
31,872 KB
testcase_11 AC 319 ms
31,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new long[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (n, x) = (c[0], c[1]);
            if (x % 2 == 1 || n < x)
            {
                ans[u] = (n + 1) / 2;
            }
            else
            {
                ans[u] = x / 2 + (n - x) / (x + 3) * (x + 4) / 2 + (n - x) % (x + 3) / 2 + 1;
            }
        }
        WriteLine(string.Join("\n", ans.Select(ai => ai % 998_244_353)));
    }
}
0