結果
問題 | No.673 カブトムシ |
ユーザー | bluemegane |
提出日時 | 2021-05-08 13:08:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 977 bytes |
コンパイル時間 | 2,617 ms |
コンパイル使用メモリ | 104,576 KB |
実行使用メモリ | 18,560 KB |
最終ジャッジ日時 | 2024-09-16 17:12:07 |
合計ジャッジ時間 | 3,792 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 29 ms
18,432 KB |
testcase_03 | AC | 24 ms
18,048 KB |
testcase_04 | AC | 28 ms
18,304 KB |
testcase_05 | AC | 27 ms
18,432 KB |
testcase_06 | AC | 23 ms
18,048 KB |
testcase_07 | AC | 27 ms
18,176 KB |
testcase_08 | AC | 30 ms
18,432 KB |
testcase_09 | WA | - |
testcase_10 | AC | 28 ms
18,304 KB |
testcase_11 | AC | 28 ms
18,304 KB |
testcase_12 | AC | 27 ms
18,304 KB |
testcase_13 | AC | 27 ms
18,432 KB |
testcase_14 | AC | 29 ms
18,432 KB |
testcase_15 | AC | 28 ms
18,560 KB |
testcase_16 | AC | 28 ms
18,304 KB |
testcase_17 | AC | 27 ms
18,560 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Numerics; using System; public class Hello { public static int MOD = 1000000007; static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var b = long.Parse(line[0]); var c = long.Parse(line[1]); var d = long.Parse(line[2]); getAns(b, c, d); } static void getAns (long b, long c, long d) { if (c == 1) { var res0 = b % MOD; res0 *= d; res0 %= MOD; Console.WriteLine(res0); return; } BigInteger res = b % MOD; res *= c; res %= MOD; BigInteger t = BigInteger.ModPow(c, d, MOD) - 1; res *= t; res %= MOD; var t2 = ModInverse(c - 1, MOD); res *= t2; res %= MOD; Console.WriteLine(res); } public static BigInteger ModInverse(BigInteger a, BigInteger m) { return BigInteger.ModPow(a, m - 2, m); } }