Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Fast Olympic CodingNew to Visual Studio Code? Get it now.
Fast Olympic Coding

Fast Olympic Coding

sam20908

|
844 installs
| (3) | Free
Competitive programming in VSCode made easy
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

⚡ Fast Olympic Coding ⚡

Testcases Gif

Once a mighty Competitive Programming plugin... Reborn with the powers of VSCode!

⚡ Overview

  • 📜 Minimal and adaptive UI for maximized functionality and view utilization
  • 🪲 Extension agnostic configuration for VSCode debugging UX with real-time inputs
  • 🐞 Built-in stress tester as a first-class feature
  • 🗨️ First-class support for interactive problems within both Judge and Stress Tester!
  • 🛜 Support for Competitive Companion to gather problem inputs easily
  • 👜 Insert file templates without leaving your code
  • ⚡ BLAZINGLY FAST! Asynchronous design + optimizations = 99% spam proof!

📥 Fast Olympic Coding is available on Visual Studio Marketplace and Open VSX Registry


</> Setting Up

Provide run settings for the languages you use in runSettings.json at the root folder. Here is an example configuration for C++, Python, and Java:

{
  ".cpp": {
    "compileCommand": ["g++", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}"],
    "runCommand": ["${fileDirname}/${fileBasenameNoExtension}"]
  },
  ".py": {
    "runCommand": ["python", "${file}"]
  },
  ".java": {
    "compileCommand": ["javac", "${file}"],
    "runCommand": ["java", "-cp", "${fileDirname}", "${fileBasenameNoExtension}"]
  }
}

We can use VSCode's built-in variables which has the syntax of ${...} and will get resolved by the extension. ${defaultBuildTask} is not supported because it requires resolving the entire build configuration which is super slow!

💡 Since runSettings.json applies recursively to subdirectories, you can specialize parts of the configuration within specific directories. The extension traverses from the workspace root directory up to the file folder, merging the settings along the way in that order.

Example structure:

workspace/
├── runSettings.json          # Base settings for entire workspace
├── contests/
│   ├── runSettings.json      # Overrides for contests folder
│   └── codeforces/
│       ├── runSettings.json  # Overrides for codeforces folder
│       └── solution.cpp      # Uses merged settings from all 3 files
Settings per language
  • compileCommand (optional): Command to run before runCommand when the file content changed
  • runCommand: Command to run the solution
  • currentWorkingDirectory (optional): sets the current working directory for runCommand

📜 Judge

Minimalistic UI from the old plugin have been reimagined to integrate VSCode's capabilities while maintaining the principle of maximum functionality within minimized space. The new UI experience is integrated into both Judge and Stress Tester views.

  • Run, edit, hide, skip testcases, you name it!
  • Hidden optimizations such as batched IO, truncating huge IO, and cached compilations.
  • Icons and tooltips to save space while being self-explanatory
  • Dedicated popup for compiler errors with color support
  • ... and so much more!
Judge Demo Gif
General setting for both Testcase Window and Stress Tester
  • maxDisplayCharacters: Maximum number of characters to display for each output
  • maxDisplayLines: Maximum number of lines to display for each output

🪲 Debugging

The extension typically attaches the debugger to an existing process, which allows custom inputs to be propagated to the program. However, each language has its own set of tooling. Adapt the commands as necessary!

🚨Please use ${debugPort} as the port for your debugging servers! The hand-picked port provides the following benefits:

  1. The port is free
  2. Detects when the debugging server fails to launch at the chosen port within a timeframe
  3. Frees the port when error occurs

‼️NOT ALL DEBUGGERS ARE EQUAL! Between debugging servers for the same language, they may not have the same set of features or work the same way! Same warning applies to VSCode debugger extensions!

Debugging Gif

Additional language settings for debugging support
  • debugCommand: Command to start the solution under a debug server
  • debugAttachConfig: Name of launch.json attach configuration.
©️ Example C++ configuration

I recommend either Microsoft's official C/C++ or Native Debug. CodeLLDB does not work because lldb-server cannot send real-time inputs.

‼️C++ (and other compiled languages) requires debug symbols to be compiled in! Easiest way is to add -g flag to your compile command.

🔔 Since both of them work with gdbserver, ensure that is installed, which is also what I tested with.

Here are the steps for Native Debug, which should be very similar with Microsoft C/C++:

  1. Add these settings for .cpp:
{
  ".cpp": {
    // compile and run configurations from above...
    "debugCommand": ["gdbserver", ":${debugPort}", "${fileDirname}/${fileBasenameNoExtension}"],
    "debugAttachConfig": "GDB: Attach"
  }
}
  1. Create a GDB attach configuration in .vscode/launch.json:
{
  "configurations": [
    {
      "name": "GDB: Attach",
      "type": "gdb",
      "request": "attach",
      "executable": "${fileDirname}/${fileBasenameNoExtension}",
      "target": ":${debugPort}",
      "remote": true,
      "cwd": "${workspaceRoot}",
      "valuesFormatting": "prettyPrinters"
    }
  ]
}
🐍 Example Python configuration

I recommend Microsoft's official Python Debugger for the best experience. The extension has built-in support for debugpy, which is the de-facto Python debugging server.

🔔 Ensure you have debugpy installed via pip.

Here are the steps for Python Debugger:

  1. Add these settings for .py:
{
  ".py": {
    // compile and run configurations from above...
    "debugCommand": [
      "python",
      "-m",
      "debugpy",
      "--listen",
      "${debugPort}",
      "--wait-for-client",
      "${file}"
    ],
    "debugAttachConfig": "Python: Attach"
  }
}
  1. Create a debugpy attach configuration in .vscode/launch.json:
{
  "configurations": [
    {
      "name": "Python: Attach",
      "type": "debugpy",
      "request": "attach",
      "connect": {
        "port": "${debugPort}"
      },
      "justMyCode": true
    }
  ]
}
♨️ Example Java configuration

I recommend Microsoft's official Debugger for Java for the best experience. For some reason, Oracle's Java extension ignores breakpoints.

‼️Compile your Java files with debug symbols! Add -g flag to your compile command.

🔔 Ensure you have Java Development Kit version 1.8+ installed.

Here are the steps for Debugger for Java:

  1. Add these settings for .java:
{
  ".java": {
    // compile and run configurations from above...
    "debugCommand": [
      "java",
      "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=${debugPort}",
      "-cp",
      "${fileDirname}",
      "${fileBasenameNoExtension}"
    ],
    "debugAttachConfig": "Java: Attach"
  }
}
  1. Create a Java attach configuration in .vscode/launch.json:
{
  "configurations": [
    {
      "name": "Java: Attach",
      "type": "java",
      "request": "attach",
      "hostName": "localhost",
      "port": "${debugPort}"
    }
  ]
}

🐞 Stress Tester

We need both a file that outputs the correct solution and another that outputs a random input to both the current and correct solution. Additional information needs to be added to runSettings.json to tell the Stress Tester the names of these files. Here is an example one:

{
  "generatorFile": "${fileDirname}/${fileBasenameNoExtension}__Generator${fileExtname}",
  "goodSolutionFile": "${fileDirname}/${fileBasenameNoExtension}__Good${fileExtname}"
}

✨ The extension provides a 64-bit integer seed input for random number generators!

💡TIP: To stress test for Runtime Error instead of Wrong Answer, have the good solution be the same as the one to bruteforce against!

Stress Tester Gif
Demo of stress testing A+B!
Settings for Stress Tester
  • delayBetweenTestcases: Amount of delay between generated testcases in milliseconds
  • stressTestcaseTimeLimit: Maximum time in milliseconds the Stress Tester is allowed to spend on one testcase
  • stressTestcaseMemoryLimit: Maximum time in megabytes the Stress Tester is allowed to use on one testcase
  • stressTimeLimit: Maximum time in milliseconds the Stress Tester is allowed to run

🗨️ Interactive Mode

We need to tell the Stress Tester the name of our interactor file. Here is an example:

{
  "interactorFile": "${fileDirname}/${fileBasenameNoExtension}__Interactor${fileExtname}"
}

✨ The interactor becomes the judge during stress test in interactive mode!

‼️FLUSH YOUR OUTPUTS! Even though this requirement has been stated in every interactive problem, it is still worth mentioning in case the files are interacting weirdly. FLUSHING SHOULD BE THE FIRST THING TO DOUBLE CHECK.

Due to the lack of standardization of interactor's results, I have taken the middle ground of various online judges' interactor's behavior. The exit code of the interactor will be used to determine the acceptance of the solution. Below lists the exit codes and the verdict:

Code Verdict
0 ✅ Accepted
Non-zero ❌ Wrong Answer
null (often from crash) ⚠️ Runtime Error

ℹ️ Partial points are not supported!

Interactive testcases have a special badge to make them distinguishable. If there is no set secret, the testcase will ask you to provide one. This is a multi-line textbox because you have to give all the data in one go!

Interactive Workflow Gif
The convenient workflow of running interactive testcases!
Interactive Stress Test Gif
Stress testing interactives is almost the same as regular stress testing!

🛜 Competitive Companion

Competitive Companion is a widely recognized browser plugin to conveniently fetch problem inputs. The plugin works with wide range of online judges and is actively maintained. Native support has been integrated directly into the extension for optimal workflow.

Problem Parsing Gif
Using Competitive Companion to parse a CodeForces problem
Contest Parsing Gif
We can parse an entire CodeForces Contest!
Settings for Competitive Companion integration
  • automaticallyStartCompetitiveCompanion (default: true): Automatically start listening for Competitive Companion when VSCode starts
  • openSelectedFiles (default: true): Whether to open all the selected files
  • askForWhichFile (default: false): Ask for which file to write testcase onto, even when a file is currently opened and only a single problem has been received
  • includePattern (default: **/*): Glob pattern to filter in the included files for asking prompt
  • excludePattern (default: empty): Glob pattern to filter out the included files for asking prompt
  • port (default: 1327): Port number to listen from Competitive Companion

👜 Inserting Prewritten Code

  • Add the root directory of the templates to the settings
  • NOTE: Remove trailing newlines for fold to work (folding is optional via settings)
    • Folding depends on VSCode support, which may require other extensions depending on the language.
Insert File Template Gif
Adding a tree reroot DP template without switching files
Possible settings
  • fileTemplatesBaseDirectory: Full path to the base directory of all prewritten files (supports ${...})
  • fileTemplatesDependencies (optional): Maps a template path relative to base directory to a list of other relative template paths that this one depends on
  • foldFileTemplate (default: false): Whether to fold the newly inserted prewritten code

© Attributions

  • FastOlympicCoding: The original Sublime Text package that inspired this extension 💖
  • Flaticon: Icon for this extension 💖
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft