글
백준 3052번 나머지(JAVA, C#)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int[] student = new int[42];
int answer = 0;
for(int i=1; i<=10; i++)
{
int success = sc.nextInt();
student[success%42] = 1;
}
for(int i=0; i<student.length; i++)
{
if(student[i] == 1)
answer++;
}
System.out.println(answer);
sc.close();
}
}
//////
C#
using System;
namespace Baekjoon {
class Program {
static void Main(string[] args) {
int[] student = new int[42];
int arr = 0;
int answer = 0;
for(int i = 1;i<=10;i++)
{
arr = int.Parse(Console.ReadLine());
student[arr%42] = 1;
}
for(int i = 0;i<42;i++)
{
if(student[i] == 1)
answer++;
}
Console.WriteLine(answer);
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 8958번 OX퀴즈(JAVA, C#) charAt(), array[].length() (0) | 2023.02.18 |
---|---|
백준 1546번 평균(JAVA, C#) BufferedReader (0) | 2023.02.18 |
백준 5597번 과제 안 내신 분(JAVA, C#) (0) | 2023.02.16 |
백준 2562번 최댓값(JAVA, C#) (0) | 2023.02.16 |
백준 10818번 최소, 최대(JAVA, C#) Arrays.sort(); (0) | 2023.02.16 |