結果

問題 No.2000 Distanced Characters
ユーザー ああいいああいい
提出日時 2022-07-10 17:57:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-06-11 07:44:12
合計ジャッジ時間 2,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,864 KB
testcase_01 AC 48 ms
60,544 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 45 ms
60,800 KB
testcase_05 AC 49 ms
60,672 KB
testcase_06 AC 47 ms
60,544 KB
testcase_07 AC 47 ms
60,544 KB
testcase_08 AC 107 ms
70,016 KB
testcase_09 AC 126 ms
71,680 KB
testcase_10 AC 123 ms
71,680 KB
testcase_11 AC 110 ms
71,040 KB
testcase_12 AC 92 ms
65,792 KB
testcase_13 AC 88 ms
65,920 KB
testcase_14 AC 98 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = 26

D = [list(map(int,input().split())) for _ in range(n)]
dat = [-1] * n
ans = [['Y'] * n for _ in range(n)]

for i in range(len(S)):
    c = ord(S[i]) - ord('a')
    for cc in range(n):
        if dat[cc] == -1:continue
        if dat[cc] + D[cc][c] > i:
            ans[cc][c] = 'N'
    dat[c] = i
for l in ans:
    print(*l)
    
0