Submission #1606879


Source Code Expand

import java.util.Scanner;
public class Main
{
    public static void main(String args[])
    {
        Scanner sc=new Scanner(System.in);
        int number=sc.nextInt();
        int copy=number;
        boolean flag=true;
        while(copy>0)
        {
            if(copy%10==0)
            flag=false;
            copy/=10;
        }
        if(flag)
        {
            if(number<1000&&number>110&&number%4==0)
            System.out.print("YES");
            else
            System.out.print("NO");
        }
    }
}

Submission Info

Submission Time
Task A - RGB Cards
User vjudge3
Language Java7 (OpenJDK 1.7.0)
Score 0
Code Size 525 Byte
Status WA
Exec Time 97 ms
Memory 20820 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 1
WA × 1
AC × 4
WA × 3
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 92 ms 18900 KB
in2.txt WA 93 ms 20820 KB
in3.txt AC 92 ms 18900 KB
in4.txt WA 93 ms 18772 KB
in5.txt AC 93 ms 20820 KB
s1.txt WA 92 ms 18772 KB
s2.txt AC 97 ms 20820 KB