結果
問題 | No.711 競技レーティング単調増加 |
ユーザー | 👑 rin204 |
提出日時 | 2024-03-20 23:41:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 215 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 82,684 KB |
実行使用メモリ | 107,200 KB |
最終ジャッジ日時 | 2024-09-30 09:38:16 |
合計ジャッジ時間 | 5,808 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,712 KB |
testcase_01 | AC | 37 ms
51,840 KB |
testcase_02 | AC | 34 ms
51,968 KB |
testcase_03 | WA | - |
testcase_04 | AC | 37 ms
51,840 KB |
testcase_05 | WA | - |
testcase_06 | AC | 34 ms
51,840 KB |
testcase_07 | WA | - |
testcase_08 | AC | 34 ms
51,712 KB |
testcase_09 | AC | 35 ms
52,224 KB |
testcase_10 | AC | 33 ms
51,840 KB |
testcase_11 | AC | 35 ms
52,352 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
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 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 87 ms
103,296 KB |
testcase_37 | AC | 102 ms
101,504 KB |
testcase_38 | AC | 88 ms
102,784 KB |
testcase_39 | AC | 69 ms
88,960 KB |
testcase_40 | AC | 89 ms
93,440 KB |
testcase_41 | AC | 34 ms
52,224 KB |
testcase_42 | AC | 73 ms
89,296 KB |
testcase_43 | AC | 85 ms
96,244 KB |
ソースコード
from bisect import bisect_left n = int(input()) A = list(map(int, input().split())) B = [] for a in A: p = bisect_left(B, a) if p == len(B): B.append(a) else: B[p] = a print(n - len(B))