結果
問題 | No.878 Range High-Element Query |
ユーザー | Schnee |
提出日時 | 2019-10-30 19:51:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,788 KB |
最終ジャッジ日時 | 2024-09-14 21:56:12 |
合計ジャッジ時間 | 4,363 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,128 KB |
testcase_01 | AC | 38 ms
10,752 KB |
testcase_02 | AC | 42 ms
10,624 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 39 ms
10,624 KB |
testcase_05 | AC | 42 ms
10,624 KB |
testcase_06 | AC | 31 ms
10,624 KB |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | AC | 46 ms
10,624 KB |
testcase_09 | AC | 46 ms
10,624 KB |
testcase_10 | AC | 34 ms
10,624 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
class No878: def get_date(self): return list(map(int,input().split())) def count_highest(self,x): k, t = 0, 0 for i in range(len(x)): if x[i] > t: k += 1 t = x[i] print(k) def solve(self): n, q = self.get_date() a = self.get_date() for _ in range(q): query = self.get_date() l, r = query[1:] b = a[l - 1: r] self.count_highest(b) if __name__ == "__main__": pro = No878() pro.solve()