結果

問題 No.2275 →↑↓
コンテスト
ユーザー fgshun
提出日時 2023-04-27 23:56:05
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 80 ms / 2,000 ms
+ 675µs
コード長 400 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 54 ms
コンパイル使用メモリ 14,848 KB
実行使用メモリ 32,940 KB
最終ジャッジ日時 2026-09-25 04:36:57
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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