목록분류 전체보기 (138)
코드굽는 타자기
링크 SWEA[5215] 문제설명 햄버거 다이어트[D3] 문제풀이 그리디X, 완전탐색 문제코드 import java.util.Scanner; import java.io.FileInputStream; class Solution { static int [][] item = new int [20][2]; static int N = 0, L = 0; static int sum_score = 0, sum_cal = 0; static int ans = 0; static int n = 0; public static void Search(int n) { if (n == N) { if (ans < sum_score && sum_cal < L) { ans = sum_score; } return; } else { /*선택할..
링크 SWEA[1289] 문제설명 원재의 메모리 복구하기[D3] 문제풀이 하나하나 비교하면서 cnt++하면 됨 문제코드 package swea.d3; import java.util.Scanner; import java.io.FileInputStream; public class D3_1289 { public static void main(String args[]) throws Exception { System.setIn(new FileInputStream("res/swea.d3/1289.txt")); Scanner sc = new Scanner(System.in); int T,ans = 0; String input; T=sc.nextInt(); input = sc.nextLine(); for(int tes..