Skip to content

Instantly share code, notes, and snippets.

View chanjungkim's full-sized avatar
💭
Give me a job...

evan chanjungkim

💭
Give me a job...
View GitHub Profile
import java.util.*;
import java.io.*;
public class Main{
public static void main(String[] args) throws IOException{
Scanner sc = new Scanner(System.in);
String a = sc.next();
String b = sc.next();
int lenA = a.length();
int lenB = b.length();
@chanjungkim
chanjungkim / 2775.java
Created July 15, 2017 04:13
2775 bunyu
import java.util.Scanner;
class Main{
static long[][] d = new long[15][15];
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int t=sc.nextInt();
int[][] tCase = new int[t][2];
for(int i = 0 ; i < t ; i++){
tCase[i][0]=sc.nextInt();
@chanjungkim
chanjungkim / 2965.java
Created July 15, 2017 04:10
2965 Kangaroo
import java.util.Scanner;
class Main{
static long[][] d = new long[15][15];
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt(); int b =sc.nextInt(); int c=sc.nextInt();
int s1, s2;
s1=b-a; s2=c-b;
recover.c
/**
* Copies a BMP piece by piece, just because.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bmp.h"
@chanjungkim
chanjungkim / hello.c
Created November 20, 2016 13:03
hello world
#include <stdio.h>
int main()
{
printf("hello world");
return 0;
}