Submission #7549170


Source Code Expand

import java.util.Scanner;

public class Main
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        if (sc.nextInt() * sc.nextInt() % 2 == 0) {
            System.out.println("Even");
        }
        else {
            System.out.println("Odd");
        }
    }
}

Submission Info

Submission Time
Task A - Product
User senchan
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 330 Byte
Status AC
Exec Time 95 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 0_000.txt, 0_001.txt
All 0_000.txt, 0_001.txt, 1_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt
Case Name Status Exec Time Memory
0_000.txt AC 92 ms 19796 KB
0_001.txt AC 95 ms 22612 KB
1_002.txt AC 94 ms 19284 KB
1_003.txt AC 91 ms 21716 KB
1_004.txt AC 93 ms 21716 KB
1_005.txt AC 91 ms 19796 KB
1_006.txt AC 92 ms 19796 KB