結果
問題 | No.1031 いたずら好きなお姉ちゃん |
ユーザー | MNGOF |
提出日時 | 2020-04-26 23:16:37 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 836 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 374,408 KB |
最終ジャッジ日時 | 2024-11-18 21:07:11 |
合計ジャッジ時間 | 98,381 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,088 KB |
testcase_01 | AC | 40 ms
317,744 KB |
testcase_02 | AC | 38 ms
57,600 KB |
testcase_03 | AC | 78 ms
339,868 KB |
testcase_04 | AC | 83 ms
81,536 KB |
testcase_05 | AC | 79 ms
253,556 KB |
testcase_06 | AC | 79 ms
81,280 KB |
testcase_07 | AC | 84 ms
374,408 KB |
testcase_08 | AC | 81 ms
81,536 KB |
testcase_09 | AC | 78 ms
82,916 KB |
testcase_10 | AC | 79 ms
81,664 KB |
testcase_11 | AC | 215 ms
95,668 KB |
testcase_12 | AC | 187 ms
93,824 KB |
testcase_13 | AC | 208 ms
97,908 KB |
testcase_14 | AC | 221 ms
93,516 KB |
testcase_15 | AC | 228 ms
98,016 KB |
testcase_16 | AC | 197 ms
95,232 KB |
testcase_17 | AC | 223 ms
96,128 KB |
testcase_18 | AC | 218 ms
98,304 KB |
testcase_19 | AC | 202 ms
359,112 KB |
testcase_20 | AC | 216 ms
99,072 KB |
testcase_21 | AC | 199 ms
354,028 KB |
testcase_22 | AC | 210 ms
93,696 KB |
testcase_23 | AC | 210 ms
351,976 KB |
testcase_24 | AC | 208 ms
98,176 KB |
testcase_25 | AC | 227 ms
354,668 KB |
testcase_26 | AC | 222 ms
96,256 KB |
testcase_27 | AC | 192 ms
351,460 KB |
testcase_28 | AC | 230 ms
97,152 KB |
testcase_29 | AC | 214 ms
360,068 KB |
testcase_30 | AC | 217 ms
99,328 KB |
testcase_31 | AC | 213 ms
356,476 KB |
testcase_32 | AC | 208 ms
98,816 KB |
testcase_33 | AC | 217 ms
357,624 KB |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
testcase_50 | TLE | - |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | AC | 39 ms
51,840 KB |
testcase_55 | AC | 40 ms
316,128 KB |
ソースコード
def solve(area): next_area = list(area) if len(next_area) <= 1: return 0 elif len(next_area) == 2: return 1 count = 0 while True: max_ind = next_area.index(max(next_area)) min_ind = next_area.index(min(next_area)) if max_ind == min_ind: break next_area = next_area[0:min_ind] if max_ind < min_ind else next_area[min_ind + 1: len(next_area)] count += 1 max_ind = area.index(max(area)) if max_ind == 2: count += 1 elif max_ind > 2: count += solve(area[0:max_ind]) if (len(area) - max_ind) == 3: count += 1 elif (len(area) - max_ind) > 3: count += solve(area[max_ind + 1: len(area)]) return count N = int(input()) data = input().split() Input = [int(s) for s in data] print(solve(Input))