結果

問題 No.2351 Butterfly in Summer
ユーザー bluemeganebluemegane
提出日時 2023-06-16 22:59:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 948 ms
コンパイル使用メモリ 111,584 KB
実行使用メモリ 26,444 KB
最終ジャッジ日時 2024-06-24 16:00:43
合計ジャッジ時間 2,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,028 KB
testcase_01 AC 27 ms
26,276 KB
testcase_02 AC 26 ms
26,280 KB
testcase_03 AC 26 ms
24,624 KB
testcase_04 AC 27 ms
24,096 KB
testcase_05 AC 27 ms
24,356 KB
testcase_06 AC 25 ms
24,156 KB
testcase_07 AC 27 ms
24,536 KB
testcase_08 AC 28 ms
24,408 KB
testcase_09 AC 25 ms
22,064 KB
testcase_10 AC 27 ms
24,028 KB
testcase_11 AC 26 ms
24,360 KB
testcase_12 AC 26 ms
24,292 KB
testcase_13 AC 26 ms
22,460 KB
testcase_14 AC 27 ms
24,480 KB
testcase_15 AC 27 ms
24,228 KB
testcase_16 AC 27 ms
22,204 KB
testcase_17 AC 27 ms
24,368 KB
testcase_18 AC 27 ms
26,072 KB
testcase_19 AC 27 ms
26,412 KB
testcase_20 AC 26 ms
26,444 KB
testcase_21 AC 26 ms
24,496 KB
testcase_22 AC 26 ms
24,280 KB
testcase_23 AC 26 ms
24,484 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Numerics;
using System;

public class hello
{
    public static int MOD = 998244353;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = long.Parse(line[0]);
        var k = long.Parse(line[1]);
        getAns(n,k);
    }
    static void getAns(long n, long k)
    {
        var ans = n;
        ans *= (k - 1);
        ans %= MOD;
        var inv = ModInv((int)k, MOD);
        var inv2 = BigInteger.ModPow(inv, n - 1, MOD);
        ans *=(long) inv2;
        ans %= MOD;
        Console.WriteLine(ans);
    }
    static int ModInv(int a, int m) => (int)BigInteger.ModPow(a, m - 2, m);
}
0