結果

問題 No.2275 →↑↓
ユーザー kakel-sankakel-san
提出日時 2023-07-07 21:13:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 3,624 ms
コンパイル使用メモリ 113,480 KB
実行使用メモリ 47,752 KB
最終ジャッジ日時 2024-07-21 16:49:52
合計ジャッジ時間 6,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,008 KB
testcase_01 AC 25 ms
25,096 KB
testcase_02 AC 26 ms
25,136 KB
testcase_03 AC 26 ms
27,132 KB
testcase_04 AC 25 ms
27,220 KB
testcase_05 AC 24 ms
25,264 KB
testcase_06 AC 93 ms
45,268 KB
testcase_07 AC 81 ms
42,444 KB
testcase_08 AC 110 ms
47,472 KB
testcase_09 AC 108 ms
45,300 KB
testcase_10 AC 111 ms
47,752 KB
testcase_11 AC 112 ms
47,752 KB
testcase_12 AC 109 ms
47,344 KB
testcase_13 AC 109 ms
45,300 KB
testcase_14 AC 108 ms
47,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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 n = NN;
        var a = NList;
        var mod = 998_244_353;
        var ans = 1L;
        for (var i = 1; i < n; ++i)
        {
            ans = ans * Math.Min(a[i - 1], a[i]) % mod;
        }
        WriteLine(ans);
    }
}
0