Submission #9946159


Source Code Expand

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Main main = new Main();
        main.solve();
    }
    public void solve() {
        Scanner scan = new Scanner(new BufferedReader(new InputStreamReader(System.in)));
        int R = scan.nextInt();
        int B = scan.nextInt();
        // 1 * r + 3 * b
        // 3 * r + 1 * b
        if ((R+B) % 4 != 0) {
            System.out.println("No");
            return;
        }
        if (Math.abs(R-B) % 2 != 0) {
            System.out.println("No");
            return;
        }
        System.out.println("Yes");

    }
}

Submission Info

Submission Time
Task B - Colored Balls
User dlmasa
Language Java8 (OpenJDK 1.8.0)
Score 0
Code Size 750 Byte
Status WA
Exec Time 93 ms
Memory 21844 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 9
WA × 10
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 90 ms 18900 KB
02.txt AC 91 ms 21588 KB
03.txt WA 92 ms 19284 KB
04.txt AC 91 ms 19924 KB
05.txt WA 91 ms 21204 KB
06.txt AC 89 ms 21076 KB
07.txt WA 91 ms 21716 KB
08.txt AC 92 ms 21204 KB
09.txt WA 91 ms 21844 KB
10.txt AC 92 ms 19028 KB
11.txt WA 93 ms 19664 KB
12.txt WA 92 ms 16976 KB
13.txt WA 90 ms 19028 KB
14.txt WA 90 ms 21716 KB
15.txt WA 92 ms 21076 KB
16.txt WA 90 ms 21844 KB
s1.txt AC 91 ms 20052 KB
s2.txt AC 92 ms 21460 KB
s3.txt AC 92 ms 19540 KB