結果

問題 No.2324 Two Countries within UEC
ユーザー kakel-sankakel-san
提出日時 2023-10-18 00:25:12
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 1,390 bytes
コンパイル時間 7,711 ms
コンパイル使用メモリ 166,848 KB
実行使用メモリ 185,920 KB
最終ジャッジ日時 2024-09-17 21:27:38
合計ジャッジ時間 17,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
55,936 KB
testcase_01 AC 233 ms
56,064 KB
testcase_02 AC 91 ms
36,200 KB
testcase_03 AC 184 ms
51,840 KB
testcase_04 AC 200 ms
55,036 KB
testcase_05 AC 98 ms
36,480 KB
testcase_06 AC 119 ms
40,692 KB
testcase_07 AC 87 ms
35,456 KB
testcase_08 AC 175 ms
51,968 KB
testcase_09 AC 185 ms
52,480 KB
testcase_10 AC 233 ms
56,064 KB
testcase_11 AC 217 ms
56,064 KB
testcase_12 AC 109 ms
39,296 KB
testcase_13 AC 109 ms
39,552 KB
testcase_14 AC 90 ms
36,096 KB
testcase_15 AC 89 ms
35,712 KB
testcase_16 AC 173 ms
49,776 KB
testcase_17 AC 134 ms
42,996 KB
testcase_18 AC 92 ms
36,608 KB
testcase_19 AC 225 ms
56,320 KB
testcase_20 AC 82 ms
34,688 KB
testcase_21 AC 148 ms
54,400 KB
testcase_22 AC 161 ms
57,728 KB
testcase_23 AC 94 ms
39,936 KB
testcase_24 AC 151 ms
56,704 KB
testcase_25 AC 222 ms
56,064 KB
testcase_26 AC 139 ms
59,504 KB
testcase_27 AC 139 ms
59,648 KB
testcase_28 AC 139 ms
59,264 KB
testcase_29 AC 138 ms
59,648 KB
testcase_30 AC 137 ms
59,392 KB
testcase_31 AC 58 ms
31,104 KB
testcase_32 AC 59 ms
30,976 KB
testcase_33 AC 58 ms
30,592 KB
testcase_34 AC 59 ms
30,972 KB
testcase_35 AC 59 ms
30,848 KB
testcase_36 AC 59 ms
30,976 KB
testcase_37 AC 58 ms
30,976 KB
testcase_38 AC 59 ms
31,024 KB
testcase_39 AC 59 ms
30,720 KB
testcase_40 AC 59 ms
30,844 KB
testcase_41 AC 58 ms
30,972 KB
testcase_42 AC 59 ms
185,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m, p, q) = (c[0], c[1], c[2], c[3]);
        var ans = new int[q];
        for (var u = 0; u < q; ++u)
        {
            c = NList;
            ans[u] = Country(m, c[0], c[1], p);
        }
        WriteLine(string.Join("\n", ans));
    }
    static int Country(int m, int x, int f, int p)
    {
        if (x % p == 0)
        {
            if (f == 0) return m;
            else return 0;
        }
        var revx = Exp(x, p - 2, p);
        var ex = (int)(f * revx % p);
        if (ex > m) return 0;
        return (m - ex) / p + (ex > 0 ? 1 : 0);
    }
    static int GCD(int a, int b)
    {
        if (a < b) return GCD(b, a);
        if (a % b == 0) return b;
        return GCD(b, a % b);
    }
    static long Exp(long n, long k, int mod)
    {
        if (k == 0) return 1;
        if (k == 1) return n % mod;
        var half = Exp(n, k / 2, mod);
        var result = (half * half) % mod;
        return ((k % 2) == 0) ? result : ((result * n) % mod);
    }
}
0