結果

問題 No.2000 Distanced Characters
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-11-02 12:44:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 132,904 KB
最終ジャッジ日時 2024-11-02 12:45:01
合計ジャッジ時間 3,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,980 KB
testcase_01 AC 43 ms
61,560 KB
testcase_02 AC 35 ms
53,504 KB
testcase_03 AC 35 ms
53,036 KB
testcase_04 AC 51 ms
64,148 KB
testcase_05 AC 50 ms
64,548 KB
testcase_06 AC 50 ms
63,808 KB
testcase_07 AC 50 ms
65,168 KB
testcase_08 AC 279 ms
132,352 KB
testcase_09 AC 299 ms
132,364 KB
testcase_10 AC 277 ms
132,412 KB
testcase_11 AC 304 ms
132,904 KB
testcase_12 AC 177 ms
107,196 KB
testcase_13 AC 168 ms
105,508 KB
testcase_14 AC 205 ms
106,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2000

MAX_INT = 10 ** 18

def main():
    S = input()
    D = []
    for _ in range(26):
        D.append(list(map(int, input().split())))
    
    # 組み上げ
    beta_dist_list = [[MAX_INT ] * 26 for _ in range(len(S))]
    beta_dist = [MAX_INT] * 26
    for i in reversed(range(len(S))):
        for j in range(26):
            beta_dist_list[i][j] = beta_dist[j]

        s = S[i]
        s_ind = ord(s) - ord("a")
        beta_dist[s_ind] = i
    
    answers = [["Y" for _ in range(26)] for _ in range(26)]
    for i in range(len(S)):
        s = S[i]
        s_ind = ord(s) - ord("a")

        for t_ind in range(26):
            if beta_dist_list[i][t_ind] - i < D[s_ind][t_ind]:
                answers[s_ind][t_ind] = "N"
    
    for i in range(26):
        print(" ".join(answers[i]))







    





if __name__ == "__main__":
    main()
0