Skip to content

Instantly share code, notes, and snippets.

@bkopanja
bkopanja / Power_of_Thor
Created October 26, 2014 17:44
Codingame - Power of Thor
import java.util.*;
import java.io.*;
import java.math.*;
/**
* Auto-generated code below aims at helping you parse
* the standard input according to the problem statement.
**/
class Player {
@bkopanja
bkopanja / Kirk_The_Descent
Last active May 22, 2016 13:10
Codingame - Kirk - The Descent
import java.util.*;
import java.io.*;
import java.math.*;
/**
* Auto-generated code below aims at helping you parse
* the standard input according to the problem statement.
**/
class Player {
@bkopanja
bkopanja / SKYNET_THE_CHASM
Created October 26, 2014 16:50
Codingame - SKYNET - THE CHASM
import java.util.*;
import java.io.*;
import java.math.*;
class Player {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int R = in.nextInt(); // the length of the road before the gap.
in.nextLine();