結果

問題 No.100 直列あみだくじ
ユーザー warashi
提出日時 2015-02-10 18:50:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-23 18:18:21
合計ジャッジ時間 2,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import functools
import operator

N = int(input())
a = [int(x) for x in input().split()]
if functools.reduce(operator.mul, [a[j] - a[i] for i in range(len(a)) for j in range(i + 1, len(a))]) > 0:
    print("Yes")
else:
    print("No")
0