結果

問題 No.1926 Sequence of Remainders
ユーザー 👑 kakel-sankakel-san
提出日時 2023-10-24 22:56:51
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 11,885 ms
コンパイル使用メモリ 157,416 KB
実行使用メモリ 206,348 KB
最終ジャッジ日時 2023-10-24 22:57:27
合計ジャッジ時間 21,743 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
32,656 KB
testcase_01 AC 148 ms
58,088 KB
testcase_02 AC 146 ms
58,128 KB
testcase_03 AC 145 ms
58,128 KB
testcase_04 AC 144 ms
58,128 KB
testcase_05 AC 149 ms
58,132 KB
testcase_06 AC 179 ms
61,528 KB
testcase_07 AC 176 ms
61,448 KB
testcase_08 AC 175 ms
61,456 KB
testcase_09 AC 171 ms
61,448 KB
testcase_10 AC 174 ms
61,464 KB
testcase_11 AC 172 ms
61,464 KB
testcase_12 AC 173 ms
61,452 KB
testcase_13 AC 177 ms
61,444 KB
testcase_14 AC 172 ms
61,520 KB
testcase_15 AC 173 ms
61,460 KB
testcase_16 AC 176 ms
61,448 KB
testcase_17 AC 173 ms
61,384 KB
testcase_18 AC 176 ms
61,384 KB
testcase_19 AC 177 ms
61,384 KB
testcase_20 AC 176 ms
61,436 KB
testcase_21 AC 175 ms
61,392 KB
testcase_22 AC 174 ms
61,384 KB
testcase_23 AC 175 ms
61,392 KB
testcase_24 AC 178 ms
61,400 KB
testcase_25 AC 173 ms
61,444 KB
testcase_26 AC 178 ms
61,772 KB
testcase_27 AC 180 ms
61,704 KB
testcase_28 AC 175 ms
61,712 KB
testcase_29 AC 177 ms
61,704 KB
testcase_30 AC 178 ms
61,696 KB
testcase_31 AC 176 ms
61,756 KB
testcase_32 AC 178 ms
61,756 KB
testcase_33 AC 176 ms
61,696 KB
testcase_34 AC 176 ms
61,696 KB
testcase_35 AC 177 ms
206,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (131 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new int[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (n, m, k) = (c[0], c[1], c[2]);
            var tmp = k % m;
            ans[u] = tmp < (m - n) ? tmp : 0;
        }
        WriteLine(string.Join("\n", ans));
    }
}
0