結果

問題 No.2482 Sandglasses
ユーザー mymelochanmymelochan
提出日時 2023-09-22 22:05:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 784 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,172 KB
最終ジャッジ日時 2024-11-16 22:47:44
合計ジャッジ時間 23,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,400 KB
testcase_01 AC 47 ms
54,656 KB
testcase_02 AC 48 ms
54,016 KB
testcase_03 AC 749 ms
153,664 KB
testcase_04 AC 751 ms
140,348 KB
testcase_05 AC 751 ms
153,668 KB
testcase_06 AC 747 ms
140,108 KB
testcase_07 AC 747 ms
140,356 KB
testcase_08 AC 756 ms
153,684 KB
testcase_09 AC 757 ms
153,544 KB
testcase_10 AC 750 ms
153,616 KB
testcase_11 AC 748 ms
153,796 KB
testcase_12 AC 779 ms
153,388 KB
testcase_13 AC 782 ms
153,664 KB
testcase_14 AC 773 ms
154,044 KB
testcase_15 AC 753 ms
153,408 KB
testcase_16 AC 750 ms
153,616 KB
testcase_17 AC 763 ms
153,544 KB
testcase_18 AC 754 ms
153,596 KB
testcase_19 AC 753 ms
153,680 KB
testcase_20 AC 750 ms
153,800 KB
testcase_21 AC 755 ms
153,920 KB
testcase_22 AC 784 ms
154,172 KB
testcase_23 AC 733 ms
147,276 KB
testcase_24 AC 733 ms
146,636 KB
testcase_25 AC 736 ms
147,268 KB
testcase_26 AC 735 ms
147,144 KB
testcase_27 AC 744 ms
147,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,K,T = lmin()
A = input().split()
B = lmin()
C = [(b,i) for i,b in enumerate(B)]
ans = []
for i in range(N):
    if A[i] == "A":
        if T - B[i] > 0:
            T2 = T-B[i]
            tmp = T2%(K*2)
            
            ans.append(min(tmp,2*K-tmp))
        else:
            
            ans.append(B[i] - T)
    else:
        if T - (K-B[i]) - K > 0:
            T2 = T - (K-B[i]) - K
            tmp = T2%(K*2)
            
            ans.append(min(tmp,2*K-tmp))
        else:
            
            ans.append(min(B[i] + T, 2*K-B[i]-T))

C.sort()
ans.sort()
ans2 = [0]*N
for i in range(N):
    ans2[C[i][1]] = ans[i]
print(*ans2)
0