목록algorithm (26)
남극

package Baekjoon; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.Arrays; import java.util.StringTokenizer; public class Baekjoon1920 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); ..

import java.text.SimpleDateFormat; import java.util.Date; public class Baekjoon10699 { public static void main(String[] args) { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); Date d = new Date(); System.out.println(format.format(d)); } }

public class Baekjoon2555 { public static void main(String[] args) { System.out.println("10/14"); } }

import java.util.Scanner; public class Baekjoon1085 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int w = sc.nextInt(); int h = sc.nextInt(); System.out.println(Math.min(Math.min(w - x, x), Math.min(h - y, y))); } }

import java.util.HashMap; import java.util.Scanner; public class Baekjoon1076 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String f = sc.next(); String s = sc.next(); String t = sc.next(); sc.close(); Long result; HashMap map = new HashMap(); map.put("black", "0,1"); map.put("brown", "1,10"); map.put("red", "2,100"); map.put("orange", "3,1000"); map.put("yellow..