結果

問題 No.1005 BOT対策
ユーザー tsuchinagatsuchinaga
提出日時 2020-10-04 23:24:11
言語 TypeScript
(5.4.3)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 797 bytes
コンパイル時間 3,987 ms
コンパイル使用メモリ 145,100 KB
最終ジャッジ日時 2024-07-19 18:22:23
合計ジャッジ時間 4,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.ts(22,5): error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.
main.ts(23,11): error TS2580: Cannot find name 'require'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.

ソースコード

diff #

function issue1005(input: string) {
    let inputs = input.trim().split("\n")
    let s: string = inputs[0]
    let t: string = inputs[1]

    // 先頭からマッチするところを探して、マッチしたらマッチした最後の文字の前に.を入れ、マッチした文字の最後の文字から確認を再開する
    let count = 0
    if (t.length == 1 && s.includes(t)) count = -1
    else {
        let head = 0
        while (head <= s.length - t.length) {
            if (s.substr(head, t.length) == t) {
                count++
                head += t.length - 1
            } else head++
        }
    }
    console.log(count)
}

let path: string = "/dev/stdin"
if (process.platform == "win32") path = "./stdin.txt"
issue1005(require('fs').readFileSync(path, 'utf8'))
0