結果
問題 | No.1021 Children in Classrooms |
ユーザー | FromBooska |
提出日時 | 2023-02-21 21:53:38 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 112,188 KB |
最終ジャッジ日時 | 2024-07-22 06:27:51 |
合計ジャッジ時間 | 8,746 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,856 KB |
testcase_01 | AC | 38 ms
52,480 KB |
testcase_02 | AC | 38 ms
51,968 KB |
testcase_03 | AC | 69 ms
76,288 KB |
testcase_04 | AC | 68 ms
76,524 KB |
testcase_05 | AC | 85 ms
76,272 KB |
testcase_06 | AC | 83 ms
76,340 KB |
testcase_07 | AC | 205 ms
76,032 KB |
testcase_08 | AC | 143 ms
76,032 KB |
testcase_09 | AC | 1,241 ms
107,080 KB |
testcase_10 | AC | 1,245 ms
107,184 KB |
testcase_11 | AC | 1,234 ms
107,676 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
# 各クラスがM回後にどこにいるか考えればいい # これで間に合うのか、もっとスマートな方法が必要なのか N, M = map(int, input().split()) A = list(map(int, input().split())) S = input() level = 0 floor, ceiling = 0, 0 for s in S: if s == 'R': level += 1 else: level -= 1 floor = min(floor, level) ceiling = max(ceiling, level) mx_list = [] mn_list = [] for i in range(N): mx_list.append(N-1-i) mn_list.append(-i) final = [0]*N for i in range(N): if ceiling <= mx_list[i] and mn_list[i] <= floor: final[i+level] += A[i] else: l = i for s in S: if s == 'R': l = min(l+1, N-1) elif s == 'L': l = max(l-1, 0) final[l] += A[i] print(*final)