문제
https://www.acmicpc.net/problem/2753
풀이
- 수학, 구현
코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int year = sc.nextInt();
if((year%4 == 0 && year%100 != 0) || (year%400 == 0)) {
System.out.println(1);
} else {
System.out.println(0);
}
}
}
'코딩테스트 > BOJ' 카테고리의 다른 글
[백준/파이썬] 1373번: 2진수 8진수 (Python) (0) | 2021.06.20 |
---|---|
[백준/파이썬] 10951번: A+B - 4 (Python) (0) | 2021.06.19 |
[백준/파이썬] 1373번: 2진수 8진수 (Python) (0) | 2021.06.15 |
[백준/파이썬] 1769번: 3의 배수 (Python) (0) | 2021.04.28 |