結果

問題 No.2000 Distanced Characters
ユーザー 👑 rin204rin204
提出日時 2022-09-19 01:40:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 77,748 KB
最終ジャッジ日時 2024-06-01 15:57:33
合計ジャッジ時間 2,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,852 KB
testcase_01 AC 49 ms
62,000 KB
testcase_02 AC 42 ms
53,608 KB
testcase_03 AC 42 ms
53,352 KB
testcase_04 AC 50 ms
61,816 KB
testcase_05 AC 52 ms
62,780 KB
testcase_06 AC 51 ms
62,516 KB
testcase_07 AC 49 ms
62,112 KB
testcase_08 AC 137 ms
77,436 KB
testcase_09 AC 142 ms
77,748 KB
testcase_10 AC 172 ms
77,684 KB
testcase_11 AC 140 ms
77,688 KB
testcase_12 AC 100 ms
72,684 KB
testcase_13 AC 95 ms
71,952 KB
testcase_14 AC 115 ms
73,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
S = [ord(s) - 97 for s in S]
inf = 1 << 30
mi = [[inf] * 26 for _ in range(26)]
bef = [-inf] * 26
for i, s in enumerate(S):
    for j in range(26):
        mi[j][s] = min(mi[j][s], i - bef[j])
    bef[s] = i

D = [list(map(int, input().split())) for _ in range(26)]
for i in range(26):
    ans = [""] * 26
    for j in range(26):
        if D[i][j] <= mi[i][j]:
            ans[j] = "Y"
        else:
            ans[j] = "N"
    print(*ans)
0