LIST 🗂️

https://school.programmers.co.kr/learn/courses/30/lessons/12945 class Solution { public int solution(int n) { long num1 = 0; long num2 = 1; for(int i = 0; i = 1234567) { num1 = num2 % 1234567; num2 = sum % 1234567; } else { num1 = num2; num2 = sum; } } int answer = (int) num1; return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/12969 import java.util.Scanner; class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); for(int i = 0; i < b; i++){ for(int j = 0; j < a; j++){ System.out.print("*"); } System.out.print("\n"); } } }
https://school.programmers.co.kr/learn/courses/30/lessons/12950 class Solution { public int[][] solution(int[][] arr1, int[][] arr2) { int[][] answer = new int[arr1.length][arr1[0].length]; for(int i = 0; i < arr1.length; i++){ for(int j = 0; j < arr1[0].length; j++){ answer[i][j] = arr1[i][j] + arr2[i][j]; } } return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/70128 class Solution { public int solution(int[] a, int[] b) { int answer = 0; for(int i = 0; i < a.length; i++){ answer += a[i] * b[i]; } return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/86491 class Solution { public int solution(int[][] sizes) { int x = 0; // 가로 int y = 0; // 세로 for(int i = 0; i x) { // 선택한 큰 수 중 가장 큰 수를 max로 x = max; } if(min > y) { // 선택한 작은 수..
https://school.programmers.co.kr/learn/courses/30/lessons/12982 import java.util.Arrays; class Solution { public int solution(int[] d, int budget) { int answer = 0; Arrays.sort(d); // 오름차순 정렬 for(int i = 0; i = 0){ answer += 1; } else{ // 예산 금액보다 크면 멈춤 break; } } return answer; } }
https://www.acmicpc.net/problem/20044 20044번: Project Teams 입력은 표준입력을 사용한다. 입력의 첫 번째 행에는 팀 수를 나타내는 양의 정수 n(1 ≤ n ≤ 5,000)이 주어진다. 그 다음 행에 학생 si 의 코딩 역량 w(si)를 나타내는 2n개의 양의 정수가 공백으로 www.acmicpc.net import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] arr = new int[2 * n]; for..
daxx0ne
'분류 전체보기' 카테고리의 글 목록 (8 Page)