結果
問題 | No.1021 Children in Classrooms |
ユーザー | nagitaosu |
提出日時 | 2020-04-10 22:05:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 428 ms / 2,000 ms |
コード長 | 671 bytes |
コンパイル時間 | 351 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 30,644 KB |
最終ジャッジ日時 | 2024-09-15 20:27:39 |
合計ジャッジ時間 | 6,165 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,496 KB |
testcase_01 | AC | 30 ms
10,496 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 34 ms
10,752 KB |
testcase_04 | AC | 34 ms
10,880 KB |
testcase_05 | AC | 34 ms
10,752 KB |
testcase_06 | AC | 33 ms
10,880 KB |
testcase_07 | AC | 34 ms
10,752 KB |
testcase_08 | AC | 34 ms
10,880 KB |
testcase_09 | AC | 406 ms
30,284 KB |
testcase_10 | AC | 413 ms
30,008 KB |
testcase_11 | AC | 416 ms
30,164 KB |
testcase_12 | AC | 426 ms
30,288 KB |
testcase_13 | AC | 423 ms
30,164 KB |
testcase_14 | AC | 428 ms
30,160 KB |
testcase_15 | AC | 346 ms
25,300 KB |
testcase_16 | AC | 379 ms
25,376 KB |
testcase_17 | AC | 363 ms
25,968 KB |
testcase_18 | AC | 415 ms
30,644 KB |
testcase_19 | AC | 214 ms
11,136 KB |
ソースコード
#!/usr/bin/env python3 import sys input = sys.stdin.readline n, m = map(int, input().split()) a = [int(item) for item in input().split()] s = input().rstrip() left = 0; right = 0 place = 0 start_from = 0 for ch in s: if ch == "L": place -= 1 if start_from > 0: start_from -= 1 else: place += 1 if start_from < n - 1: start_from += 1 right = max(place, right) left = min(place, left) right += 1 left = -left + 1 # Over if right + left > n: arr = [sum(a)] else: arr = [sum(a[:left])] + a[left:-right] + [sum(a[-right:])] arr = [0] * start_from + arr arr += [0] * (n - len(arr)) print(*arr)