結果

問題 No.2324 Two Countries within UEC
ユーザー AdamantiteAdamantite
提出日時 2023-06-29 01:37:08
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,603 bytes
コンパイル時間 10,835 ms
コンパイル使用メモリ 165,804 KB
実行使用メモリ 182,704 KB
最終ジャッジ日時 2024-07-05 18:08:32
合計ジャッジ時間 22,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 519 ms
49,280 KB
testcase_02 AC 140 ms
34,176 KB
testcase_03 AC 374 ms
44,544 KB
testcase_04 WA -
testcase_05 AC 146 ms
33,920 KB
testcase_06 WA -
testcase_07 AC 125 ms
33,536 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 482 ms
49,152 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 188 ms
36,224 KB
testcase_14 AC 138 ms
33,792 KB
testcase_15 WA -
testcase_16 AC 348 ms
42,752 KB
testcase_17 AC 245 ms
38,528 KB
testcase_18 WA -
testcase_19 AC 485 ms
49,152 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 483 ms
49,280 KB
testcase_26 AC 389 ms
48,000 KB
testcase_27 AC 397 ms
49,664 KB
testcase_28 AC 400 ms
48,512 KB
testcase_29 AC 381 ms
48,000 KB
testcase_30 AC 403 ms
48,512 KB
testcase_31 AC 50 ms
28,672 KB
testcase_32 AC 48 ms
28,416 KB
testcase_33 AC 50 ms
28,800 KB
testcase_34 AC 52 ms
28,928 KB
testcase_35 WA -
testcase_36 AC 49 ms
28,672 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 50 ms
28,800 KB
testcase_41 WA -
testcase_42 AC 49 ms
182,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (105 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 <= m) {
                        result[i] = m / p + 1;
                    } else {
                        result[i] = m / p;
                    }
                }
            }
            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