結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー bluemeganebluemegane
提出日時 2024-04-19 22:41:51
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 9,988 ms
コンパイル使用メモリ 167,440 KB
実行使用メモリ 215,312 KB
最終ジャッジ日時 2024-10-11 16:27:22
合計ジャッジ時間 11,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,184 KB
testcase_01 AC 56 ms
29,440 KB
testcase_02 AC 146 ms
71,808 KB
testcase_03 AC 159 ms
51,632 KB
testcase_04 AC 158 ms
52,736 KB
testcase_05 AC 161 ms
53,876 KB
testcase_06 AC 174 ms
71,000 KB
testcase_07 AC 167 ms
62,464 KB
testcase_08 AC 148 ms
71,284 KB
testcase_09 AC 55 ms
29,056 KB
testcase_10 AC 55 ms
29,184 KB
testcase_11 AC 55 ms
28,928 KB
testcase_12 AC 174 ms
71,128 KB
testcase_13 AC 175 ms
70,912 KB
testcase_14 AC 175 ms
71,132 KB
testcase_15 AC 177 ms
70,872 KB
testcase_16 AC 143 ms
60,672 KB
testcase_17 AC 144 ms
61,184 KB
testcase_18 AC 160 ms
66,064 KB
testcase_19 AC 145 ms
215,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (107 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;

public class Hello
{
    public static int MOD = 998244353;
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        getAns(n, a);
    }
    static void getAns(int n, long[] a)
    {
        Array.Sort(a);
        var x = 0L;
        foreach (var z in a)
        {
            x = x * 10 + z;
            x %= MOD;
        }
        Console.WriteLine(x);
    }
}
0