結果

問題 No.1438 Broken Drawers
ユーザー rlangevinrlangevin
提出日時 2023-01-11 08:52:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 103,540 KB
最終ジャッジ日時 2024-06-01 14:22:27
合計ジャッジ時間 4,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,088 KB
testcase_01 AC 38 ms
53,620 KB
testcase_02 AC 38 ms
52,964 KB
testcase_03 AC 38 ms
53,424 KB
testcase_04 AC 38 ms
52,524 KB
testcase_05 AC 38 ms
51,880 KB
testcase_06 AC 83 ms
102,548 KB
testcase_07 AC 84 ms
102,940 KB
testcase_08 AC 38 ms
52,148 KB
testcase_09 AC 38 ms
52,640 KB
testcase_10 AC 38 ms
53,796 KB
testcase_11 AC 45 ms
61,228 KB
testcase_12 AC 59 ms
77,504 KB
testcase_13 AC 68 ms
85,596 KB
testcase_14 AC 54 ms
70,772 KB
testcase_15 AC 86 ms
98,892 KB
testcase_16 AC 83 ms
98,552 KB
testcase_17 AC 85 ms
102,176 KB
testcase_18 AC 86 ms
102,068 KB
testcase_19 AC 86 ms
101,960 KB
testcase_20 AC 86 ms
103,372 KB
testcase_21 AC 85 ms
102,760 KB
testcase_22 AC 92 ms
102,284 KB
testcase_23 AC 92 ms
102,856 KB
testcase_24 AC 89 ms
103,100 KB
testcase_25 AC 88 ms
103,528 KB
testcase_26 AC 87 ms
102,872 KB
testcase_27 AC 87 ms
103,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
ans = 0
pre = -1
for a in A:
    if a > pre:
        ans += 1
        pre = a
    else:
        pre = -1
print(ans)
0