Submission #1606740


Source Code Expand

import java.io.*;
import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y= sc.nextInt();
		int z= sc.nextInt();
		String xy= Integer.toString(x) + Integer.toString(y) + Integer.toString(z);
		int yz= Integer.valueOf(xy);
		if(yz%4==0) {
		System.out.print("YES");
		}else {
		System.out.print("NO");
		}
		sc.close();

	}
}

Submission Info

Submission Time
Task A - RGB Cards
User vjudge5
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 423 Byte
Status AC
Exec Time 93 ms
Memory 22612 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 91 ms 19796 KB
in2.txt AC 90 ms 21972 KB
in3.txt AC 93 ms 21204 KB
in4.txt AC 91 ms 21716 KB
in5.txt AC 90 ms 19156 KB
s1.txt AC 91 ms 19796 KB
s2.txt AC 92 ms 22612 KB