Beispiel #1
0
 public void run() {
   Locale.setDefault(Locale.US);
   try {
     sc = new FastScanner("access.in");
     out = new PrintWriter("access.out");
     solve();
     sc.close();
     out.close();
   } catch (Throwable e) {
     e.printStackTrace();
     System.exit(1);
   }
 }
Beispiel #2
0
 double nextDouble() {
   return sc.nextDouble();
 }
Beispiel #3
0
 long nextLong() {
   return sc.nextLong();
 }
Beispiel #4
0
 String nextToken() {
   return sc.nextToken();
 }
Beispiel #5
0
 int nextInt() {
   return sc.nextInt();
 }
Beispiel #6
0
 BigInteger nextBigInteger() {
   return sc.nextBigInteger();
 }