結果
問題 | No.921 ずんだアロー |
ユーザー | deideiro |
提出日時 | 2019-11-25 21:44:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 391 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 25,312 KB |
最終ジャッジ日時 | 2024-10-14 15:33:11 |
合計ジャッジ時間 | 3,235 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 26 ms
10,752 KB |
testcase_04 | AC | 25 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | AC | 25 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | AC | 26 ms
10,752 KB |
testcase_09 | AC | 26 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 78 ms
19,292 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 99 ms
25,312 KB |
testcase_24 | AC | 99 ms
20,884 KB |
ソースコード
#yukicoder 921 ずんだアロー import math from collections import Counter N = int(input()) A = list(map(int,input().split())) if N == 1: print(1) exit() C = Counter(A) ans = 0 for i in range(N-1): if A[i] >= A[i+1]: ans += 1 if i == N - 2: if A[i] <= A[i+1]: ans += 1 tmp = max(math.ceil(N / 2),max(C.values())) ans = max(ans,tmp) print(ans)