結果

問題 No.1926 Sequence of Remainders
ユーザー mobchanmobchan
提出日時 2023-05-08 10:47:18
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 7,474 ms
コンパイル使用メモリ 167,636 KB
実行使用メモリ 209,980 KB
最終ジャッジ日時 2024-05-03 23:30:57
合計ジャッジ時間 30,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,208 KB
testcase_01 AC 472 ms
54,784 KB
testcase_02 AC 462 ms
54,784 KB
testcase_03 AC 462 ms
54,784 KB
testcase_04 AC 470 ms
54,912 KB
testcase_05 AC 475 ms
54,656 KB
testcase_06 AC 495 ms
54,784 KB
testcase_07 AC 506 ms
54,784 KB
testcase_08 AC 490 ms
54,656 KB
testcase_09 AC 499 ms
54,656 KB
testcase_10 AC 485 ms
54,880 KB
testcase_11 AC 489 ms
54,656 KB
testcase_12 AC 490 ms
54,784 KB
testcase_13 AC 503 ms
54,912 KB
testcase_14 AC 490 ms
54,784 KB
testcase_15 AC 488 ms
54,892 KB
testcase_16 AC 497 ms
54,656 KB
testcase_17 AC 498 ms
54,656 KB
testcase_18 AC 489 ms
54,912 KB
testcase_19 AC 484 ms
54,912 KB
testcase_20 AC 483 ms
54,656 KB
testcase_21 AC 485 ms
54,912 KB
testcase_22 AC 474 ms
54,912 KB
testcase_23 AC 479 ms
54,784 KB
testcase_24 AC 479 ms
54,784 KB
testcase_25 AC 492 ms
54,912 KB
testcase_26 AC 500 ms
54,912 KB
testcase_27 AC 497 ms
54,784 KB
testcase_28 AC 487 ms
54,784 KB
testcase_29 AC 487 ms
54,528 KB
testcase_30 AC 505 ms
54,656 KB
testcase_31 AC 498 ms
54,756 KB
testcase_32 AC 480 ms
54,656 KB
testcase_33 AC 496 ms
54,912 KB
testcase_34 AC 504 ms
55,040 KB
testcase_35 AC 488 ms
209,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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