結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,120 KB
testcase_01 AC 50 ms
61,184 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 43 ms
52,864 KB
testcase_04 AC 52 ms
61,696 KB
testcase_05 AC 52 ms
61,696 KB
testcase_06 AC 52 ms
61,056 KB
testcase_07 AC 56 ms
61,184 KB
testcase_08 AC 141 ms
77,440 KB
testcase_09 AC 146 ms
77,952 KB
testcase_10 AC 175 ms
77,440 KB
testcase_11 AC 140 ms
77,952 KB
testcase_12 AC 100 ms
71,552 KB
testcase_13 AC 98 ms
70,656 KB
testcase_14 AC 119 ms
71,040 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