結果

問題 No.2275 →↑↓
ユーザー fgshunfgshun
提出日時 2023-04-27 23:56:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,408 KB
最終ジャッジ日時 2024-11-17 03:53:56
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 32 ms
10,368 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 150 ms
28,960 KB
testcase_07 AC 121 ms
25,040 KB
testcase_08 AC 179 ms
33,120 KB
testcase_09 AC 179 ms
33,248 KB
testcase_10 AC 179 ms
33,144 KB
testcase_11 AC 178 ms
33,408 KB
testcase_12 AC 178 ms
33,120 KB
testcase_13 AC 179 ms
33,256 KB
testcase_14 AC 179 ms
33,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import islice, tee


def solve(in_):
    N = int(next(in_))
    A = tuple(map(int, next(in_).split()))
    MOD = 998244353

    ans = 1
    it0, it1 = tee(A)
    it = zip(it0, islice(it1, 1, None))
    for a, b in it:
        ans = (ans * min(a, b)) % MOD

    return ans


def main():
    answer = solve(sys.stdin)
    print(answer)


if __name__ == '__main__':
    main()
0