結果

問題 No.2275 →↑↓
ユーザー chineristACchineristAC
提出日時 2023-04-21 21:24:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 112,112 KB
最終ジャッジ日時 2024-11-06 14:51:03
合計ジャッジ時間 2,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
68,484 KB
testcase_01 AC 67 ms
69,208 KB
testcase_02 AC 66 ms
69,388 KB
testcase_03 AC 70 ms
68,588 KB
testcase_04 AC 67 ms
69,620 KB
testcase_05 AC 66 ms
68,816 KB
testcase_06 AC 113 ms
101,652 KB
testcase_07 AC 106 ms
96,020 KB
testcase_08 AC 122 ms
107,680 KB
testcase_09 AC 123 ms
107,928 KB
testcase_10 AC 122 ms
112,080 KB
testcase_11 AC 121 ms
112,112 KB
testcase_12 AC 122 ms
107,828 KB
testcase_13 AC 122 ms
108,196 KB
testcase_14 AC 121 ms
108,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

from math import sqrt, ceil
from bisect import bisect_left, bisect_right
from typing import Iterable


input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 998244353

N = int(input())
A = li()

res = 1
for i in range(N-1):
    res *= min(A[i],A[i+1])
    res %= mod
print(res)
0