Skip to main content

Java 8 coding challenge: Life, the Universe, and Everything

Your program is to use the brute-force approach in order to find the Answer to Life, the Universe, and Everything. More precisely... rewrite small numbers from input to output. Stop processing input after reading in the number 42. All numbers at input are integers of one or two digits.

SAMPLE INPUT
1
2
88
42
99
SAMPLE OUTPUT
1
2
88

Code:


import java.util.*;
import java.io.*;
import java.math.BigInteger;

public class Tester
{
public static long mod=(long)(1e9+7);
public static long xx,yy,d;
static int minPrime[];
static boolean isPrime[];

public static void main(String[] args) throws IOException
{
InputReader s=new InputReader(System.in);
OutputStream outputStream = System.out;
PrintWriter out=new PrintWriter(outputStream);

while(true)
{
int n=s.nextInt();
if(n==42)
break;
else
out.println(n);
}


out.close();
}

static void modifiedSieve(int n)
{
minPrime = new int[n+1];

for(int i=2; i<=Math.sqrt(n); i++)
{
if(minPrime[i] == 0)
{
for(int j=i*i; j<=n; j=j+i)
{
if(minPrime[j] == 0)
minPrime[j] = i;
}
}
}

for(int i=2; i<=n; i++)
{
if(minPrime[i] == 0)
minPrime[i] = i;
}

}

static void Sieve(int n)
{
isPrime = new boolean[n+1];
Arrays.fill(isPrime, true);

isPrime[0]=false;
isPrime[1]=false;

for(int i=2; i<=Math.sqrt(n); i++)
{
if(isPrime[i])
{
for(int j=i*i; j<=n; j=j+i)
isPrime[j]=false;
}
}

}

static void extendedEuclid(long A, long B)
{
if(B == 0) {
d = A;
xx = 1;
yy = 0;
}
else {
extendedEuclid(B, A%B);
long temp = xx;
xx = yy;
yy = temp - (A/B)*yy;
}
}

static long gcd(long a,long b)
{
if(b==0)
return a;

return gcd(b,a%b);
}

static long modulo(long x,long y,long p)
{
long res = 1;
x = x % p;

while (y > 0)
{
if (y%2==1)
res = (res*x) % p;

y = y>>1;
x = (x*x) % p;
}
return res;
}

public static void debug(Object... o)
{
System.out.println(Arrays.deepToString(o));
}

static long exp(long a, long b)
{
if(b==0)
return 1;
if(b==1)
return a;
if(b==2)
return a*a;

if(b%2==0)
return exp(exp(a,b/2),2);
else
return a*exp(exp(a,(b-1)/2),2);
}

static class Pair implements Comparable<Pair>
{
long x,y;
Pair(long ii, long cc)
{
x=ii;
y=cc;
}

public int compareTo(Pair o)
{
return Long.compare(this.x, o.x);
}

public int hashCode() {
int hu = (int) (x ^ (x >>> 32));
int hv = (int) (y ^ (y >>> 32));
return 31 * hu + hv;
}

public boolean equals(Object o) {
Pair other = (Pair) o;
return x == other.x && y == other.y;
}

public String toString() {
return "[x=" + x + ", y=" + y + "]";
}

}

static final class InputReader{
private final InputStream stream;
private final byte[] buf=new byte[1024];
private int curChar;
private int Chars;
public InputReader(InputStream stream){this.stream=stream;}
private int read()throws IOException{
if(curChar>=Chars){
curChar=0;
Chars=stream.read(buf);
if(Chars<=0)
return -1;
}
return buf[curChar++];
}
public final int nextInt()throws IOException{return (int)nextLong();}
public final long nextLong()throws IOException{
int c=read();
while(isSpaceChar(c)){
c=read();
if(c==-1) throw new IOException();
}
boolean negative=false;
if(c=='-'){
negative=true;
c=read();
}
long res=0;
do{
if(c<'0'||c>'9')throw new InputMismatchException();
res*=10;
res+=(c-'0');
c=read();
}while(!isSpaceChar(c));
return negative?(-res):(res);
}
public final int[] nextIntBrray(int size)throws IOException{
int[] arr=new int[size];
for(int i=0;i<size;i++)arr[i]=nextInt();
return arr;
}
public final String nextString()throws IOException{
int c=read();
while(isSpaceChar(c))c=read();
StringBuilder res=new StringBuilder();
do{
res.append((char)c);
c=read();
}while(!isSpaceChar(c));
return res.toString();
}
public final String nextLine()throws IOException{
int c=read();
while(isSpaceChar(c))c=read();
StringBuilder res=new StringBuilder();
do{
res.append((char)c);
c=read();
}while(c!='\n'&&c!=-1);
return res.toString();
}
private boolean isSpaceChar(int c)
{
return c==' '||c=='\n'||c=='\r'||c=='\t'||c==-1;
}
}

}

 

Comments

Popular posts from this blog

Saltstack and Vault integration

First install and configure vault using this tutorial: https://apassionatechie.wordpress.com/2017/03/05/hashicorp-vault/ Use the latest version of vault. Then install salt using the steps given here: https://docs.saltstack.com/en/latest/topics/installation/ If you face any issues then refer these links: https://apassionatechie.wordpress.com/2017/07/31/salt-issues/ https://apassionatechie.wordpress.com/2017/08/03/salt-stack-formulas/ Now let's integrate vault and salt so that we can access vault secrets from inside salt state. First let's add some key values into our vault. vault write secret/ssh/user1 password="abc123" Then you can check it by reading: vault read secret/ssh/user1 To allow salt to access your secrets you must firstly create a policy as follows: salt-policy.hcl [code] path "secret/*" { capabilities = ["read", "list"] } path "auth/*" { capabilities = ["read", "list","sudo",...

Salt stack issues

The function “state.apply” is running as PID Restart salt-minion with command:  service salt-minion restart No matching sls found for ‘init’ in env ‘base’ Add top.sls file in the directory where your main sls file is present. Create the file as follows: 1 2 3 base: 'web*' : - apache If the sls is present in a subdirectory elasticsearch/init.sls then write the top.sls as: 1 2 3 base: '*' : - elasticsearch.init How to execute saltstack-formulas create file  /srv/pillar/top.sls  with content: base : ' * ' : - salt create file  /srv/pillar/salt.sls  with content: salt : master : worker_threads : 2 fileserver_backend : - roots - git gitfs_remotes : - git://github.com/saltstack-formulas/epel-formula.git - git://github.com/saltstack-formulas/git-formula.git - git://github.com/saltstack-formulas/nano-formula.git - git://github.com/saltstack-f...

How to grep the output of cURL?

curl writes the output to stderr, so redirect that and also suppress the progress: curl - v -- silent https :// google . com / 2 >& 1 | grep expire The reason why  curl  writes the information to stderr is so you can do: curl <url> | someprgram  without that information clobbering the input of  someprogram It is possible to use  --stderr -  as parameter, to redirect the output from stderr (default) to stdout. With this option you also should use  --silent  to suppress the progress bar. $ curl - v -- silent https :// google . com / -- stderr - | grep expire * expire date : 2015 - 09 - 01 00 : 00 : 00 GMT