結果

問題 No.1926 Sequence of Remainders
ユーザー mobchanmobchan
提出日時 2023-05-08 10:47:18
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 14,410 ms
コンパイル使用メモリ 169,800 KB
実行使用メモリ 209,092 KB
最終ジャッジ日時 2024-11-25 05:02:42
合計ジャッジ時間 32,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,080 KB
testcase_01 AC 442 ms
54,784 KB
testcase_02 AC 442 ms
54,656 KB
testcase_03 AC 427 ms
54,528 KB
testcase_04 AC 444 ms
55,040 KB
testcase_05 AC 447 ms
54,784 KB
testcase_06 AC 482 ms
54,656 KB
testcase_07 AC 463 ms
54,784 KB
testcase_08 AC 458 ms
54,784 KB
testcase_09 AC 455 ms
54,528 KB
testcase_10 AC 464 ms
54,912 KB
testcase_11 AC 471 ms
54,784 KB
testcase_12 AC 454 ms
54,656 KB
testcase_13 AC 472 ms
54,656 KB
testcase_14 AC 453 ms
54,784 KB
testcase_15 AC 475 ms
54,784 KB
testcase_16 AC 469 ms
54,784 KB
testcase_17 AC 472 ms
54,912 KB
testcase_18 AC 461 ms
54,784 KB
testcase_19 AC 457 ms
54,640 KB
testcase_20 AC 447 ms
54,656 KB
testcase_21 AC 453 ms
54,656 KB
testcase_22 AC 451 ms
54,784 KB
testcase_23 AC 446 ms
54,912 KB
testcase_24 AC 437 ms
54,656 KB
testcase_25 AC 471 ms
55,040 KB
testcase_26 AC 450 ms
54,784 KB
testcase_27 AC 438 ms
54,784 KB
testcase_28 AC 450 ms
54,656 KB
testcase_29 AC 475 ms
54,784 KB
testcase_30 AC 448 ms
54,656 KB
testcase_31 AC 449 ms
54,784 KB
testcase_32 AC 467 ms
54,656 KB
testcase_33 AC 443 ms
54,528 KB
testcase_34 AC 468 ms
54,656 KB
testcase_35 AC 466 ms
209,092 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (91 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var T = int.Parse(Console.ReadLine());

        for (int h = 1; h <= T; h++)
        {
            var input = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var N = input[0];
            var M = input[1];
            var K = input[2];

            var remainder = K % M;

            if (M - N <= remainder) Console.WriteLine(0);
            else Console.WriteLine(remainder);
        }
    }
}
0