結果

問題 No.2000 Distanced Characters
ユーザー achapiachapi
提出日時 2022-07-08 21:40:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,716 KB
最終ジャッジ日時 2024-06-08 16:43:32
合計ジャッジ時間 4,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,120 KB
testcase_01 AC 58 ms
65,152 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 41 ms
53,120 KB
testcase_04 AC 78 ms
76,032 KB
testcase_05 AC 82 ms
76,416 KB
testcase_06 AC 64 ms
72,832 KB
testcase_07 AC 65 ms
71,424 KB
testcase_08 AC 60 ms
75,520 KB
testcase_09 AC 960 ms
78,192 KB
testcase_10 AC 728 ms
82,560 KB
testcase_11 AC 250 ms
89,716 KB
testcase_12 AC 524 ms
78,848 KB
testcase_13 AC 468 ms
78,736 KB
testcase_14 AC 296 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
from bisect import*
d=[[]for i in range(26)]
al="abcdefghijklmnopqrstuvwxyz"
for i in range(len(s)):d[al.index(s[i])].append(i+1)
for i in range(26):
    l=list(map(int,input().split()))
    ans=[]
    for j in range(26):
        if len(d[i])==0 or len(d[j])==0:ans.append("Y")
        else:
            for a in d[i]:
                b=bisect_right(d[j],a)
                if b!=len(d[j]):
                    if a+l[j]>d[j][b]:
                        ans.append("N")
                        break
            else:ans.append("Y")
    print(*ans)
0