結果

問題 No.2275 →↑↓
ユーザー FromBooskaFromBooska
提出日時 2023-10-18 12:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-09-18 08:25:55
合計ジャッジ時間 2,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
51,952 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,332 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 87 ms
98,688 KB
testcase_07 AC 74 ms
89,728 KB
testcase_08 AC 108 ms
101,904 KB
testcase_09 AC 106 ms
102,016 KB
testcase_10 AC 107 ms
102,144 KB
testcase_11 AC 103 ms
102,400 KB
testcase_12 AC 104 ms
102,016 KB
testcase_13 AC 104 ms
102,016 KB
testcase_14 AC 105 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# BFS distanceではうまくいかない、隣り合うマスで交互に移動があるから
# A = [3, 5, 2]を考えると1行目はすべて1、2行目はすべて3、3行目はすべて6となる(min(2行目の列数、3行目の列数)の上列の和)

N = int(input())
A = list(map(int, input().split()))
mod = 998244353
for i in range(N):
    a = A[i]
    if i == 0:
        num = 1
    else:
        mn = min(A[i-1], A[i])
        num = num*mn
        num %= mod
    #print('i', i, 'num', num)
    
ans = num
print(ans)
0