TLE to JR

atcoder上で「TLE」が「JR」になる。コンテスト駅でのコード事故のため、実行時間に遅れが発生しています。

À partir de 2022-12-02. Voir la dernière version.

// ==UserScript==
// @name         TLE to JR
// @namespace    https://github.com/jnc-explosion
// @version      1.0
// @description  atcoder上で「TLE」が「JR」になる。コンテスト駅でのコード事故のため、実行時間に遅れが発生しています。
// @author       jnc-explosion
// @match        https://atcoder.jp/*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    $("span.label-warning:contains('TLE')").html("JR").attr("data-original-title","実行が遅延しています");
})();