結果

問題 No.2275 →↑↓
ユーザー くねんじくねんじ
提出日時 2023-05-28 21:07:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 10,732 KB
実行使用メモリ 30,048 KB
最終ジャッジ日時 2023-08-27 16:22:54
合計ジャッジ時間 4,699 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
12,268 KB
testcase_01 WA -
testcase_02 AC 13 ms
7,812 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 13 ms
7,792 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