結果
問題 | No.318 学学学学学 |
ユーザー | LyricalMaestro |
提出日時 | 2024-07-28 04:22:52 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 929 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 123,808 KB |
最終ジャッジ日時 | 2024-07-28 04:22:57 |
合計ジャッジ時間 | 5,074 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
72,448 KB |
testcase_01 | AC | 76 ms
83,852 KB |
testcase_02 | RE | - |
testcase_03 | AC | 75 ms
82,560 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 93 ms
92,032 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 124 ms
100,864 KB |
testcase_20 | RE | - |
testcase_21 | AC | 42 ms
53,760 KB |
testcase_22 | AC | 42 ms
53,760 KB |
testcase_23 | AC | 42 ms
54,272 KB |
testcase_24 | AC | 42 ms
53,760 KB |
testcase_25 | AC | 43 ms
53,760 KB |
testcase_26 | AC | 42 ms
53,504 KB |
testcase_27 | AC | 40 ms
53,416 KB |
testcase_28 | AC | 42 ms
53,504 KB |
ソースコード
## https://yukicoder.me/problems/no/318 from collections import deque def main(): N = int(input()) A = list(map(int, input().split())) a_map = {} for i in range(N): a = A[i] if a not in a_map: a_map[a] = [i, i] else: a_map[a][1] = i event_map = {} for a, (s, g) in a_map.items(): if s not in event_map: event_map[s] = [] event_map[s].append((a, g)) queue = deque() answer = [0] * N for t in range(N): if t in event_map: for a, g in event_map[t]: while len(queue) > 0 and queue[-1][0] < a: queue.pop() queue.append((a, g)) answer[t] = queue[0][0] while len(queue) > 0 and queue[0][1] <= t: queue.popleft() print(" ".join(map(str, answer))) if __name__ == '__main__': main()