[Java] 백준 1729번 점수따먹기
문제https://www.acmicpc.net/problem/1749 코드import java.util.*;import java.io.*;public class Main { public static void main(String args[]) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int n = Integer.parseInt(st.nextToken()); int m = Integer.parseInt(st.nextToken()); int..