結果
問題 | No.1476 esreveR dna esreveR |
ユーザー | kakel-san |
提出日時 | 2024-06-27 23:28:21 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 890 bytes |
コンパイル時間 | 16,004 ms |
コンパイル使用メモリ | 165,668 KB |
実行使用メモリ | 182,916 KB |
最終ジャッジ日時 | 2024-06-27 23:28:38 |
合計ジャッジ時間 | 8,931 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
28,912 KB |
testcase_01 | AC | 53 ms
28,528 KB |
testcase_02 | AC | 52 ms
28,928 KB |
testcase_03 | AC | 52 ms
28,800 KB |
testcase_04 | AC | 60 ms
29,056 KB |
testcase_05 | AC | 52 ms
28,800 KB |
testcase_06 | AC | 52 ms
28,672 KB |
testcase_07 | AC | 52 ms
182,916 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (99 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/
ソースコード
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(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var n = long.Parse(ReadLine()); WriteLine(Exp(6, n / 2, 998_244_353)); } static long Exp(long n, long p, int mod) { long _n = n % mod; var _p = p; var result = 1L; if ((_p & 1) == 1) result *= _n; while (_p > 0) { _n = _n * _n % mod; _p >>= 1; if ((_p & 1) == 1) result = result * _n % mod; } return result; } }