結果

問題 No.2324 Two Countries within UEC
ユーザー kakel-sankakel-san
提出日時 2023-10-18 00:15:12
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,280 bytes
コンパイル時間 8,262 ms
コンパイル使用メモリ 166,852 KB
実行使用メモリ 187,204 KB
最終ジャッジ日時 2024-09-17 21:19:19
合計ジャッジ時間 15,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
55,936 KB
testcase_01 AC 201 ms
56,064 KB
testcase_02 AC 78 ms
36,224 KB
testcase_03 AC 160 ms
51,840 KB
testcase_04 AC 173 ms
55,028 KB
testcase_05 AC 81 ms
36,468 KB
testcase_06 AC 103 ms
40,704 KB
testcase_07 AC 76 ms
35,200 KB
testcase_08 AC 156 ms
51,992 KB
testcase_09 AC 160 ms
52,480 KB
testcase_10 AC 202 ms
56,064 KB
testcase_11 AC 196 ms
56,064 KB
testcase_12 AC 102 ms
39,412 KB
testcase_13 AC 101 ms
39,296 KB
testcase_14 AC 85 ms
35,968 KB
testcase_15 AC 83 ms
35,200 KB
testcase_16 AC 154 ms
49,920 KB
testcase_17 AC 124 ms
43,008 KB
testcase_18 AC 86 ms
36,480 KB
testcase_19 AC 214 ms
56,064 KB
testcase_20 AC 77 ms
34,560 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 207 ms
56,192 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 52 ms
30,848 KB
testcase_32 AC 52 ms
30,720 KB
testcase_33 AC 51 ms
30,848 KB
testcase_34 AC 51 ms
30,976 KB
testcase_35 AC 51 ms
30,976 KB
testcase_36 AC 51 ms
30,720 KB
testcase_37 AC 50 ms
30,976 KB
testcase_38 AC 52 ms
31,104 KB
testcase_39 AC 51 ms
31,104 KB
testcase_40 AC 51 ms
30,720 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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)
    {
        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