結果

問題 No.2275 →↑↓
ユーザー tamatotamato
提出日時 2023-04-21 21:21:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 100,136 KB
最終ジャッジ日時 2024-11-06 14:47:46
合計ジャッジ時間 2,147 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,196 KB
testcase_01 AC 38 ms
52,232 KB
testcase_02 AC 38 ms
52,028 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,612 KB
testcase_05 AC 38 ms
52,064 KB
testcase_06 AC 80 ms
96,748 KB
testcase_07 AC 70 ms
88,808 KB
testcase_08 AC 98 ms
99,992 KB
testcase_09 AC 99 ms
100,000 KB
testcase_10 AC 100 ms
100,092 KB
testcase_11 AC 98 ms
100,136 KB
testcase_12 AC 98 ms
100,028 KB
testcase_13 AC 98 ms
99,944 KB
testcase_14 AC 98 ms
100,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353

N = int(input())
A = list(map(int, input().split()))

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