update run.py for making template

This commit is contained in:
2026-03-16 17:14:37 +09:00
parent 701942606e
commit b90a576fdf
3 changed files with 90 additions and 22 deletions

11
templates/template.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
#define let auto
#define fn auto
#define usize size_t
using namespace std;
fn fastio() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
}