Submission #2715411


Source Code Expand

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextInt();
        long m = sc.nextInt();
        long mod = 1000000007;
        if (n == m) {
            //n!m! x2
            long ans = 2;
            while (n > 0) {
                ans = (ans % mod) * (n % mod) % mod;
                n--;
            }
            while (m > 0) {
                ans = (ans % mod) * (m % mod) % mod;
                m--;
            }
            System.out.println(ans);
        } else if (Math.abs(n - m) == 1) {
            //n!m!
            long ans = 1;
            while (n > 0) {
                ans = (ans % mod) * (n % mod) % mod;
                n--;
            }
            while (m > 0) {
                ans = (ans % mod) * (m % mod) % mod;
                m--;
            }
            System.out.println(ans);
        } else {
            System.out.println(0);
        }

    }

}

Submission Info

Submission Time
Task C - Reconciled?
User proteasome
Language Java7 (OpenJDK 1.7.0)
Score 300
Code Size 1037 Byte
Status AC
Exec Time 107 ms
Memory 22868 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 4
AC × 16
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt, s4.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, s1.txt, s2.txt, s3.txt, s4.txt
Case Name Status Exec Time Memory
01.txt AC 101 ms 18900 KB
02.txt AC 105 ms 19156 KB
03.txt AC 96 ms 20820 KB
04.txt AC 106 ms 21204 KB
05.txt AC 106 ms 19284 KB
06.txt AC 95 ms 20820 KB
07.txt AC 95 ms 20820 KB
08.txt AC 94 ms 18900 KB
09.txt AC 106 ms 19156 KB
10.txt AC 105 ms 19156 KB
11.txt AC 96 ms 22868 KB
12.txt AC 96 ms 18900 KB
s1.txt AC 95 ms 18772 KB
s2.txt AC 96 ms 20820 KB
s3.txt AC 96 ms 20692 KB
s4.txt AC 107 ms 22740 KB