Submission #1606651


Source Code Expand

import java.io.IOException;
import java.util.Scanner;

public class Main 
{
    public static void main(String[] args) throws IOException 
    {
        Scanner input = new Scanner(System.in);

        int r = input.nextInt();
        int g = input.nextInt();
        int b = input.nextInt();

        int newNum = r * 100 + g * 10 + b;

        if (newNum % 4 == 0)
        {
                System.out.println("YES");
        }
        else
        {
                System.out.println("NO");
        }
        input.close();
    }
}

Submission Info

Submission Time
Task A - RGB Cards
User vjudge5
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 536 Byte
Status AC
Exec Time 107 ms
Memory 21844 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 7
Set Name Test Cases
Sample s1.txt, s2.txt
All in1.txt, in2.txt, in3.txt, in4.txt, in5.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
in1.txt AC 99 ms 18900 KB
in2.txt AC 91 ms 16972 KB
in3.txt AC 99 ms 20820 KB
in4.txt AC 100 ms 19796 KB
in5.txt AC 97 ms 18644 KB
s1.txt AC 101 ms 21844 KB
s2.txt AC 107 ms 19284 KB