찬스의 블로그

Version 3.0


  • 홈

  • 소개

  • 아카이브

  • 카테고리

  • 태그

  • 검색

[Python] codeforces #652 A. FashionabLee

작성일 2020-06-28 | In Algorithm |

A. FashionabLee

문제 링크

  • https://codeforces.com/problemset/problem/1369/A

풀이 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
# A. FashionabLee


import sys
input = sys.stdin.readline

t = int(input())
for i in range(t):
    n = int(input())
    if n % 4 == 0:
        print('YES')
    else:
        print('NO')

비고

# 알고리즘 # 백준 # 파이썬
[Python] codeforces #652 B. AccurateLee
[Python] codeforces global8 A. C+=
  • 목차
  • 블로그 정보
찬스

찬스

329 포스트
15 카테고리
37 태그
  1. 1 A. FashionabLee
    1. 1.1 문제 링크
    2. 1.2 풀이 코드
    3. 1.3 비고
© 2022 찬스
Powered by Jekyll
Theme - NexT.Muse