結果

問題 No.2000 Distanced Characters
ユーザー 👑 KazunKazun
提出日時 2022-10-08 05:01:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 77,908 KB
最終ジャッジ日時 2024-06-22 00:58:26
合計ジャッジ時間 2,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,144 KB
testcase_01 AC 35 ms
62,284 KB
testcase_02 AC 31 ms
53,912 KB
testcase_03 AC 30 ms
53,252 KB
testcase_04 AC 38 ms
62,544 KB
testcase_05 AC 38 ms
63,348 KB
testcase_06 AC 41 ms
62,752 KB
testcase_07 AC 41 ms
62,992 KB
testcase_08 AC 89 ms
77,756 KB
testcase_09 AC 129 ms
77,596 KB
testcase_10 AC 113 ms
77,908 KB
testcase_11 AC 91 ms
77,504 KB
testcase_12 AC 82 ms
76,564 KB
testcase_13 AC 92 ms
76,364 KB
testcase_14 AC 101 ms
76,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#==================================================
def solve():
    S=[ord(s)-ord("a") for s in input()]

    sigma=26
    D=[None for _ in range(sigma)]
    for alpha in range(sigma):
        D[alpha]=list(map(int,input().split()))

    Ans=[["Y"]*sigma for _ in range(sigma)]
    T=[-1]*sigma
    for j,beta in enumerate(S):
        for alpha in range(sigma):
            if T[alpha]!=-1 and T[alpha]+D[alpha][beta]>j:
                Ans[alpha][beta]="N"
        T[beta]=j
    return Ans

#==================================================
for A in solve():
    print(*A)
0