結果

問題 No.2275 →↑↓
ユーザー くねんじくねんじ
提出日時 2023-05-28 21:07:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 33,468 KB
最終ジャッジ日時 2024-06-08 12:09:34
合計ジャッジ時間 4,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,744 KB
testcase_01 WA -
testcase_02 AC 27 ms
10,368 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 25 ms
10,496 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
ans = 1
for i in range(N-1):
    ans*= min(A[i], A[i+1])
print(ans)
0