46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"Google KickStart C++ Template": {
|
|
"prefix": "kickstart",
|
|
"body": [
|
|
"#include <bits/stdc++.h>",
|
|
"using namespace std;",
|
|
"#define int long long int",
|
|
"#define ll long long",
|
|
"#define endl \"\\n\"",
|
|
"#define tc \\",
|
|
" int t; \\",
|
|
" cin >> t; \\",
|
|
" while (t--)",
|
|
"#define pb push_back",
|
|
"#define mp make_pair",
|
|
"#define pii pair<ll, ll>",
|
|
"",
|
|
"void fastio()",
|
|
"{",
|
|
" ios_base::sync_with_stdio(0);",
|
|
" cin.tie(0);",
|
|
" cout.tie(0);",
|
|
"}",
|
|
"void solve()",
|
|
"{",
|
|
"}",
|
|
"signed main()",
|
|
"{",
|
|
"",
|
|
" fastio();",
|
|
" int t;",
|
|
" cin >> t;",
|
|
" for (int case_i = 1; case_i <= t; case_i++)",
|
|
" {",
|
|
"",
|
|
" cout << \"Case #\" << case_i << \": \";",
|
|
" solve();",
|
|
" }",
|
|
"",
|
|
" return 0;",
|
|
"}"
|
|
],
|
|
"description": "Google KickStart C++ Template"
|
|
}
|
|
}
|