반응형 코딩테스트 문제집73 [Softeer] Lv1: 근무 시간(6254) 문제- 링크: https://softeer.ai/practice/6254 풀이더보기import java.io.*;import java.util.*;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int totalMinute = 0; for (int i = 0; i 2025. 2. 8. [Softeer] Lv1: 주행거리 비교하기(6253) 문제- 링크: https://softeer.ai/practice/6253 풀이더보기import java.io.*;import java.util.*;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); if (a > b) { System.out.println("A"); } else if (a 2025. 2. 7. [Programmers] Lv0: 중복된 숫자 개수(120583) 문제- 링크: https://school.programmers.co.kr/learn/courses/30/lessons/120583 풀이더보기class Solution { public int solution(int[] array, int n) { int answer = 0; for (int i = 0; i 2025. 2. 7. 이전 1 ··· 5 6 7 8 다음 반응형