Last active
September 30, 2017 19:45
-
-
Save rendon/339307729a370f97ccc2edbbb589136d to your computer and use it in GitHub Desktop.
My CF settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| template.cpp: /home/data/cs/pc/TEMPLATE/template.cpp | |
| template.c: /home/data/cs/pc/TEMPLATE/template.c | |
| template.go: /home/data/cs/pc/TEMPLATE/template.go |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** Built using CHelper plug-in, Actual solution is at the top. */ | |
| //region | |
| import java.io.*; | |
| import java.util.*; | |
| import java.math.BigInteger; | |
| public class Main { | |
| public static void main(String[] args) { | |
| InputStream inputStream = System.in; | |
| OutputStream outputStream = System.out; | |
| InputReader in = new InputReader(inputStream); | |
| PrintWriter out = new PrintWriter(outputStream); | |
| Solver solver = new Solver(); | |
| solver.solve(in, out); | |
| out.close(); | |
| } | |
| } | |
| //endregion | |
| class Solver { | |
| public void solve(InputReader in, PrintWriter out) { | |
| } | |
| } | |
| //region | |
| class InputReader { | |
| private BufferedReader reader; | |
| private StringTokenizer tokenizer; | |
| public InputReader(InputStream stream) | |
| { | |
| reader = new BufferedReader(new InputStreamReader(stream)); | |
| tokenizer = null; | |
| } | |
| public String next() | |
| { | |
| while (tokenizer == null || !tokenizer.hasMoreTokens()) { | |
| try { | |
| tokenizer = new StringTokenizer(reader.readLine()); | |
| } catch (IOException e) { | |
| throw new RuntimeException(e); | |
| } | |
| } | |
| return tokenizer.nextToken(); | |
| } | |
| public int nextInt() { return Integer.parseInt(next()); } | |
| public long nextLong() { return Long.parseLong(next()); } | |
| } | |
| //endregion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Copyright 2017 Rafael Rendón Pablo <[email protected]> */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main() { | |
| return EXIT_SUCCESS; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Copyright 2017 Rafael Rendón Pablo <[email protected]> */ | |
| // region Template | |
| #include <iostream> | |
| #include <iomanip> | |
| #include <fstream> | |
| #include <sstream> | |
| #include <string> | |
| #include <bitset> | |
| #include <vector> | |
| #include <queue> | |
| #include <map> | |
| #include <set> | |
| #include <cmath> | |
| #include <cctype> | |
| #include <cassert> | |
| #include <cstring> | |
| #include <numeric> | |
| #include <iomanip> | |
| #include <algorithm> | |
| using std::string; | |
| using std::vector; | |
| using std::map; | |
| using std::set; | |
| using std::queue; | |
| typedef long long int64; | |
| typedef unsigned long long uint64; | |
| const double kEps = 10e-8; | |
| const int kMax = 1000; | |
| const int kInf = 1 << 30; | |
| // endregion | |
| int main() { | |
| return EXIT_SUCCESS; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment