Submission #1778764


Source Code Expand

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

public class Main {
    private static IO io = new IO();
    private static int n = io.nextInt();
    private static int d = io.nextInt();
    public static void main(String[] args) {
        int x = io.nextInt();
        int y = io.nextInt();

        if (x%d!=0 || x%d!=0) {
            System.out.println(0.0);
            return;
        }

        // それぞれ右左上下への移動回数
        int xr=0, xl=0, yu=0, yd=0;
        if (x/d<0) xl = x/d;
        else xr = x/d;
        if (y/d<0) yd = y/d;
        else yu = y/d;
        // def回の操作はどこかで絶対やらないといけない
        int def = Math.abs(xl+xr) + Math.abs(yu+yd);
        // 残りindef回を振り分けてトータル0にできるか?
        int indef = n-def;
        if (indef<0 || indef%2!=0) {
            System.out.println(0.0);
            return;
        }
        indef /= 2;

        double ans = 0;
        for (int i = 0; i <= indef; i++) {
            ans += comb(new int[] {xr+i, xl+i, yu+(indef-i), yd+(indef-i)});
        }
        System.out.println(ans);
    }

    // (n!/(a!b!c!d!)) / 4^n (a+b+c+d=n)
    private static double comb(int[] a) {
        List<Double> up = new ArrayList<>();
        for (double i=1; i<=n; i++) up.add(i/4);
        int i = 0;
        for (int j = 0; j < 4; j++) {
            for (int k = a[j]; k >= 2; k--) {
                up.set(i, up.get(i++)/k);
            }
        }
        double ans = 1;
        for (int j=0; j<n; j++) ans *= up.get(j);
        return ans;
    }

    private static class IO extends PrintWriter {
        private final InputStream in;
        private final byte[] buffer = new byte[1024];
        private int ptr = 0;
        private int buflen = 0;

        IO() {
            this(System.in);
        }

        IO(InputStream source) {
            super(System.out);
            this.in = source;
        }

        boolean hasNextByte() {
            if (ptr < buflen) return true;
            else {
                ptr = 0;
                try {
                    buflen = in.read(buffer);
                } catch (IOException e) {
                    e.printStackTrace();
                }
                if (buflen <= 0) return false;
            }
            return true;
        }
        int readByte() {
            if (hasNextByte()) return buffer[ptr++];
            else return -1;
        }
        boolean isPrintableChar(int c) {return 33<=c &&c <=126;}
        void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr]))ptr++;}
        boolean hasNext() {
            skipUnprintable();
            return hasNextByte();
        }

        long nextLong() {
            if (!hasNext()) throw new NoSuchElementException();
            long n = 0;
            boolean minus = false;
            int b = readByte();
            if (b == '-') {
                minus = true;
                b = readByte();
            }
            if (b < '0' || '9' < b) throw new NumberFormatException();
            while (true) {
                if ('0' <= b && b <= '9') {
                    n *= 10;
                    n += b - '0';
                } else if (b == -1 || !isPrintableChar(b)) return minus ? -n : n;
                else throw new NumberFormatException();
                b = readByte();
            }
        }

        int nextInt() {
            long nl = nextLong();
            if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
            return (int) nl;
        }

        public void close() {
            super.close();
            try {
                in.close();
            } catch (IOException ignored) {
            }
        }
    }
}

Submission Info

Submission Time
Task D - 大ジャンプ
User creep04
Language Java8 (OpenJDK 1.8.0)
Score 0
Code Size 3891 Byte
Status WA
Exec Time 161 ms
Memory 41760 KB

Judge Result

Set Name part1 part2 All
Score / Max Score 0 / 90 0 / 10 0 / 1
Status
AC × 17
WA × 6
AC × 26
WA × 10
AC × 56
WA × 15
Set Name Test Cases
part1 test_1_151403858_0_0AB.txt, test_1_1_0_1AB.txt, test_1_1_2_0AB.txt, test_1_200416616_-430405070_-79858930AB.txt, test_1_320861287_0_0AB.txt, test_1_445441131_0_0AB.txt, test_2_91743015_0_183486030AB.txt, test_3_165357536_496072608_0AB.txt, test_3_357154050_-106436394_768502001AB.txt, test_3_721501125_-568833455_353553641AB.txt, test_3_893846474_0_0AB.txt, test_4_291388018_-291388018_0AB.txt, test_5_318547875_955643625_-637095750AB.txt, test_5_704387671_-704387671_0AB.txt, test_5_82323965_639854915_-688317394AB.txt, test_6_187422602_374845204_-374845204AB.txt, test_6_346164451_0_0AB.txt, test_6_99058019_194123640_-837769837AB.txt, test_7_166330212_166330212_-332660424AB.txt, test_7_89698746_448493730_-179397492AB.txt, test_8_10000000_-40000000_-40000000AB.txt, test_8_10000000_0_80000000AB.txt, test_8_10000000_80000000_0AB.txt
part2 test_10_227248639_454497278_0B.txt, test_11_692637325_-181424149_-938839075B.txt, test_13_260236679_-780710037_-520473358B.txt, test_13_269280357_807841071_269280357B.txt, test_13_96859935_0_-581159610B.txt, test_16_40374395_-40374395_-565241530B.txt, test_1_151403858_0_0AB.txt, test_1_1_0_1AB.txt, test_1_1_2_0AB.txt, test_1_200416616_-430405070_-79858930AB.txt, test_1_320861287_0_0AB.txt, test_1_445441131_0_0AB.txt, test_21_304856339_609712678_914569017B.txt, test_26_214390232_-857560928_428780464B.txt, test_2_91743015_0_183486030AB.txt, test_30_10000000_-300000000_0B.txt, test_30_10000000_0_300000000B.txt, test_30_10000000_150000000_-150000000B.txt, test_30_54228128_0_813421920B.txt, test_3_165357536_496072608_0AB.txt, test_3_357154050_-106436394_768502001AB.txt, test_3_721501125_-568833455_353553641AB.txt, test_3_893846474_0_0AB.txt, test_4_291388018_-291388018_0AB.txt, test_5_318547875_955643625_-637095750AB.txt, test_5_704387671_-704387671_0AB.txt, test_5_82323965_639854915_-688317394AB.txt, test_6_187422602_374845204_-374845204AB.txt, test_6_346164451_0_0AB.txt, test_6_99058019_194123640_-837769837AB.txt, test_7_166330212_166330212_-332660424AB.txt, test_7_89698746_448493730_-179397492AB.txt, test_8_10000000_-40000000_-40000000AB.txt, test_8_10000000_0_80000000AB.txt, test_8_10000000_80000000_0AB.txt, test_9_283198156_849594468_849594468B.txt
All sample_01.txt, sample_02.txt, sample_03.txt, test_1000_1000000_-500000000_500000000.txt, test_1000_1000000_0_-1000000000.txt, test_1000_1000000_1000000000_0.txt, test_1000_150305_97998860_-32315575.txt, test_1000_1_0_0.txt, test_1000_1_2_0.txt, test_1000_1_2_2.txt, test_1000_3308678_-800700076_-350719868.txt, test_1000_3608549_811923525_689232859.txt, test_1000_3728577_-145414503_-969430020.txt, test_1000_537976_11297496_224335992.txt, test_10_227248639_454497278_0B.txt, test_11_692637325_-181424149_-938839075B.txt, test_130_95365311_-667557177_-286095933.txt, test_131_18204705_-145637640_0.txt, test_13_260236679_-780710037_-520473358B.txt, test_13_269280357_807841071_269280357B.txt, test_13_96859935_0_-581159610B.txt, test_16_40374395_-40374395_-565241530B.txt, test_1_151403858_0_0AB.txt, test_1_1_0_1AB.txt, test_1_1_2_0AB.txt, test_1_200416616_-430405070_-79858930AB.txt, test_1_320861287_0_0AB.txt, test_1_445441131_0_0AB.txt, test_210_28974130_0_260767170.txt, test_217_321156_24407856_22480920.txt, test_21_304856339_609712678_914569017B.txt, test_26_214390232_-857560928_428780464B.txt, test_289_421462830_-487186374_-417635361.txt, test_2_91743015_0_183486030AB.txt, test_30_10000000_-300000000_0B.txt, test_30_10000000_0_300000000B.txt, test_30_10000000_150000000_-150000000B.txt, test_30_54228128_0_813421920B.txt, test_339_4475128_957677392_281933064.txt, test_3_165357536_496072608_0AB.txt, test_3_357154050_-106436394_768502001AB.txt, test_3_721501125_-568833455_353553641AB.txt, test_3_893846474_0_0AB.txt, test_480_402960_-131767920_-34654560.txt, test_4_291388018_-291388018_0AB.txt, test_507_3516183_-879045750_-253165176.txt, test_515_8606048_-25818144_8606048.txt, test_522_2286376_-230923976_-18291008.txt, test_5_318547875_955643625_-637095750AB.txt, test_5_704387671_-704387671_0AB.txt, test_5_82323965_639854915_-688317394AB.txt, test_676_198114948_0_792459792.txt, test_688_151937211_-286341114_10198771.txt, test_6_187422602_374845204_-374845204AB.txt, test_6_346164451_0_0AB.txt, test_6_99058019_194123640_-837769837AB.txt, test_71_367604060_367604060_0.txt, test_752_120973200_0_-725839200.txt, test_772_881340073_0_0.txt, test_777_125719576_-499451637_822057459.txt, test_7_166330212_166330212_-332660424AB.txt, test_7_89698746_448493730_-179397492AB.txt, test_839_166155061_0_-332310122.txt, test_839_923157_923157_564972084.txt, test_849_415705_290993500_0.txt, test_873_418406_2928842_322172620.txt, test_8_10000000_-40000000_-40000000AB.txt, test_8_10000000_0_80000000AB.txt, test_8_10000000_80000000_0AB.txt, test_981_159373724_-637494896_-159373724.txt, test_9_283198156_849594468_849594468B.txt
Case Name Status Exec Time Memory
sample_01.txt AC 70 ms 21076 KB
sample_02.txt AC 68 ms 19156 KB
sample_03.txt AC 73 ms 22996 KB
test_1000_1000000_-500000000_500000000.txt AC 70 ms 21076 KB
test_1000_1000000_0_-1000000000.txt WA 71 ms 21204 KB
test_1000_1000000_1000000000_0.txt AC 71 ms 18260 KB
test_1000_150305_97998860_-32315575.txt AC 67 ms 19796 KB
test_1000_1_0_0.txt AC 151 ms 41760 KB
test_1000_1_2_0.txt AC 150 ms 39712 KB
test_1000_1_2_2.txt AC 161 ms 41672 KB
test_1000_3308678_-800700076_-350719868.txt WA 130 ms 36732 KB
test_1000_3608549_811923525_689232859.txt AC 135 ms 37672 KB
test_1000_3728577_-145414503_-969430020.txt AC 69 ms 19024 KB
test_1000_537976_11297496_224335992.txt AC 127 ms 37280 KB
test_10_227248639_454497278_0B.txt AC 69 ms 17748 KB
test_11_692637325_-181424149_-938839075B.txt AC 68 ms 19284 KB
test_130_95365311_-667557177_-286095933.txt WA 79 ms 18644 KB
test_131_18204705_-145637640_0.txt AC 67 ms 19540 KB
test_13_260236679_-780710037_-520473358B.txt WA 70 ms 21076 KB
test_13_269280357_807841071_269280357B.txt AC 70 ms 20564 KB
test_13_96859935_0_-581159610B.txt AC 69 ms 17108 KB
test_16_40374395_-40374395_-565241530B.txt AC 69 ms 20948 KB
test_1_151403858_0_0AB.txt AC 68 ms 18132 KB
test_1_1_0_1AB.txt AC 69 ms 19412 KB
test_1_1_2_0AB.txt AC 69 ms 20948 KB
test_1_200416616_-430405070_-79858930AB.txt AC 69 ms 20948 KB
test_1_320861287_0_0AB.txt AC 68 ms 19284 KB
test_1_445441131_0_0AB.txt AC 68 ms 17748 KB
test_210_28974130_0_260767170.txt AC 68 ms 17748 KB
test_217_321156_24407856_22480920.txt AC 68 ms 18004 KB
test_21_304856339_609712678_914569017B.txt AC 70 ms 17236 KB
test_26_214390232_-857560928_428780464B.txt WA 70 ms 19156 KB
test_289_421462830_-487186374_-417635361.txt AC 69 ms 19028 KB
test_2_91743015_0_183486030AB.txt AC 69 ms 21076 KB
test_30_10000000_-300000000_0B.txt WA 69 ms 17108 KB
test_30_10000000_0_300000000B.txt AC 68 ms 19668 KB
test_30_10000000_150000000_-150000000B.txt WA 69 ms 18260 KB
test_30_54228128_0_813421920B.txt AC 69 ms 18516 KB
test_339_4475128_957677392_281933064.txt AC 78 ms 19540 KB
test_3_165357536_496072608_0AB.txt AC 70 ms 21204 KB
test_3_357154050_-106436394_768502001AB.txt AC 67 ms 21972 KB
test_3_721501125_-568833455_353553641AB.txt AC 68 ms 19412 KB
test_3_893846474_0_0AB.txt AC 70 ms 19156 KB
test_480_402960_-131767920_-34654560.txt AC 67 ms 23380 KB
test_4_291388018_-291388018_0AB.txt AC 68 ms 21332 KB
test_507_3516183_-879045750_-253165176.txt AC 68 ms 18260 KB
test_515_8606048_-25818144_8606048.txt AC 68 ms 17876 KB
test_522_2286376_-230923976_-18291008.txt AC 69 ms 19028 KB
test_5_318547875_955643625_-637095750AB.txt WA 68 ms 21204 KB
test_5_704387671_-704387671_0AB.txt WA 68 ms 21076 KB
test_5_82323965_639854915_-688317394AB.txt AC 68 ms 21204 KB
test_676_198114948_0_792459792.txt AC 125 ms 34924 KB
test_688_151937211_-286341114_10198771.txt AC 67 ms 19156 KB
test_6_187422602_374845204_-374845204AB.txt WA 69 ms 17876 KB
test_6_346164451_0_0AB.txt AC 70 ms 21204 KB
test_6_99058019_194123640_-837769837AB.txt AC 67 ms 19796 KB
test_71_367604060_367604060_0.txt AC 73 ms 18388 KB
test_752_120973200_0_-725839200.txt WA 124 ms 35360 KB
test_772_881340073_0_0.txt AC 139 ms 35372 KB
test_777_125719576_-499451637_822057459.txt AC 68 ms 21204 KB
test_7_166330212_166330212_-332660424AB.txt WA 69 ms 21204 KB
test_7_89698746_448493730_-179397492AB.txt WA 68 ms 21204 KB
test_839_166155061_0_-332310122.txt AC 68 ms 20308 KB
test_839_923157_923157_564972084.txt AC 106 ms 25860 KB
test_849_415705_290993500_0.txt AC 68 ms 18260 KB
test_873_418406_2928842_322172620.txt AC 97 ms 20564 KB
test_8_10000000_-40000000_-40000000AB.txt WA 70 ms 19028 KB
test_8_10000000_0_80000000AB.txt AC 70 ms 21204 KB
test_8_10000000_80000000_0AB.txt AC 72 ms 20692 KB
test_981_159373724_-637494896_-159373724.txt WA 131 ms 33856 KB
test_9_283198156_849594468_849594468B.txt AC 69 ms 20052 KB