結果

問題 No.2324 Two Countries within UEC
ユーザー AdamantiteAdamantite
提出日時 2023-06-29 01:41:55
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 1,618 bytes
コンパイル時間 6,326 ms
コンパイル使用メモリ 166,620 KB
実行使用メモリ 182,580 KB
最終ジャッジ日時 2024-07-05 18:12:34
合計ジャッジ時間 17,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
48,384 KB
testcase_01 AC 435 ms
49,024 KB
testcase_02 AC 123 ms
33,664 KB
testcase_03 AC 334 ms
44,800 KB
testcase_04 AC 368 ms
46,592 KB
testcase_05 AC 126 ms
34,048 KB
testcase_06 AC 180 ms
37,120 KB
testcase_07 AC 111 ms
33,272 KB
testcase_08 AC 324 ms
43,904 KB
testcase_09 AC 330 ms
44,672 KB
testcase_10 AC 428 ms
48,984 KB
testcase_11 AC 414 ms
48,896 KB
testcase_12 AC 164 ms
35,840 KB
testcase_13 AC 168 ms
36,076 KB
testcase_14 AC 121 ms
34,304 KB
testcase_15 AC 111 ms
33,536 KB
testcase_16 AC 310 ms
42,748 KB
testcase_17 AC 219 ms
38,400 KB
testcase_18 AC 128 ms
34,304 KB
testcase_19 AC 429 ms
48,768 KB
testcase_20 AC 102 ms
32,896 KB
testcase_21 AC 302 ms
46,208 KB
testcase_22 AC 374 ms
50,048 KB
testcase_23 AC 155 ms
36,992 KB
testcase_24 AC 322 ms
47,744 KB
testcase_25 AC 425 ms
49,152 KB
testcase_26 AC 371 ms
48,384 KB
testcase_27 AC 351 ms
49,536 KB
testcase_28 AC 353 ms
48,512 KB
testcase_29 AC 348 ms
48,384 KB
testcase_30 AC 343 ms
48,128 KB
testcase_31 AC 43 ms
28,672 KB
testcase_32 AC 42 ms
28,928 KB
testcase_33 AC 42 ms
28,800 KB
testcase_34 AC 43 ms
28,928 KB
testcase_35 AC 42 ms
28,672 KB
testcase_36 AC 42 ms
28,544 KB
testcase_37 AC 42 ms
28,928 KB
testcase_38 AC 42 ms
28,800 KB
testcase_39 AC 42 ms
28,672 KB
testcase_40 AC 42 ms
28,544 KB
testcase_41 AC 45 ms
29,056 KB
testcase_42 AC 43 ms
182,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (79 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;

namespace No02324_TwoCountriesWithinUEC
{
    internal class Program
    {
        static void Main(string[] args) {
            string[] param = Console.ReadLine().Split(' ');
            int n = int.Parse(param[0]);
            int m = int.Parse(param[1]);
            int p = int.Parse(param[2]);
            int q = int.Parse(param[3]);

            int[] result = new int[q];
            for (int i = 0; i < q; i++) {
                string[] param2 = Console.ReadLine().Split(' ');
                int x = int.Parse(param2[0]);
                int f = int.Parse(param2[1]);

                int xMod = x % p;
                if (xMod == 0) {
                    if (f == 0) {
                        result[i] = m;
                    } else {
                        result[i] = 0;
                    }
                } else {
                    long y = f * RepPow(x, p - 2, p) % p;
                    if(y == 0) {
                        y += p;
                    }
                    if(y <= m) {
                        result[i] = (int)(m - y) / p + 1;
                    }
                }
            }
            for (int i = 0; i < q; i++) {
                Console.WriteLine(result[i]);
            }
        }

        //x^p % mod
        static long RepPow(long n, long p, int mod) {
            if (p == 0) {
                return 1;
            }
            if (p % 2 == 0) {
                var x = RepPow(n, p / 2, mod);
                return (x * x) % mod;
            } else {
                return RepPow(n, p - 1, mod) * n % mod;
            }
        }
    }
}
0