結果

問題 No.2275 →↑↓
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-01 16:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 102,212 KB
最終ジャッジ日時 2024-04-30 17:43:44
合計ジャッジ時間 2,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,896 KB
testcase_01 AC 33 ms
52,360 KB
testcase_02 AC 34 ms
52,348 KB
testcase_03 AC 35 ms
52,652 KB
testcase_04 AC 35 ms
52,796 KB
testcase_05 AC 33 ms
53,140 KB
testcase_06 AC 79 ms
100,992 KB
testcase_07 AC 75 ms
94,952 KB
testcase_08 AC 89 ms
101,724 KB
testcase_09 AC 88 ms
101,896 KB
testcase_10 AC 92 ms
102,208 KB
testcase_11 AC 90 ms
102,024 KB
testcase_12 AC 90 ms
101,896 KB
testcase_13 AC 93 ms
102,024 KB
testcase_14 AC 90 ms
102,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
v,w=1,1
MOD=998244353
for i in range(N-1):
	a,b=A[i:i+2]
	v=v*w%MOD
	w=min(a,b)
print(v*w%MOD)
0