Submission #187984


Source Code Expand

import java.math.BigDecimal;
import java.util.Scanner;

/**
 * Created by hama_du on 2014/06/21.
 */
public class Main {
    public static void main(String[] args) {
        BigDecimal[][] C = new BigDecimal[1001][1001];
        for (int i = 0 ; i <= 1000 ; i++) {
            C[i][0] = BigDecimal.ONE;
            C[i][i] = BigDecimal.ONE;
            for (int j = 1 ; j < i ; j++) {
                C[i][j] = BigDecimal.ZERO.add(C[i-1][j-1]).add(C[i-1][j]);
            }
        }

        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int d = in.nextInt();
        int x = in.nextInt();
        int y = in.nextInt();
        if (Math.abs(x) % d != 0 || Math.abs(y) % d != 0) {
            System.out.println(0.0d);
            return;
        }
        int xneed = Math.abs(x) / d;
        int yneed = Math.abs(y) / d;
        int need = xneed + yneed;
        if (need > n || need % 2 != n % 2) {
            System.out.println(0.0d);
            return;
        }

        BigDecimal p = BigDecimal.valueOf(0.0d);
        for (int xn = 0 ; xn <= n ; xn++) {
            int yn = n - xn;
            if (xn < xneed || xn % 2 != xneed % 2) {
                continue;
            }
            if (yn < yneed || yn % 2 != yneed % 2) {
                continue;
            }
            int left = (xn - xneed) / 2;
            int right = (xn + xneed) / 2;
            int down = (yn - yneed) / 2;
            int up = (yn + yneed) / 2;
            BigDecimal add = BigDecimal.ONE
                    .multiply(C[n][left])
                    .multiply(C[n - left][right])
                    .multiply(C[n - left - right][down]);
            p = p.add(add);
        }

        BigDecimal p4 = BigDecimal.valueOf(1L);
        for (int i = 0 ; i < n ; i++) {
            p4 = p4.multiply(BigDecimal.valueOf(4L));
        }
        BigDecimal answer = p.divide(p4, 12, BigDecimal.ROUND_HALF_UP);
        System.out.println(answer.toString());
    }

}

Submission Info

Submission Time
Task D - 大ジャンプ
User hamadu
Language Java (OpenJDK 1.7.0)
Score 101
Code Size 2047 Byte
Status AC
Exec Time 1164 ms
Memory 126104 KB

Judge Result

Set Name part1 part2 All
Score / Max Score 90 / 90 10 / 10 1 / 1
Status
AC × 23
AC × 36
AC × 68
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 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 1051 ms 123044 KB
sample_02.txt AC 1038 ms 123840 KB
sample_03.txt AC 1045 ms 125116 KB
test_1000_1000000_-500000000_500000000.txt AC 1073 ms 124560 KB
test_1000_1000000_0_-1000000000.txt AC 1063 ms 124184 KB
test_1000_1000000_1000000000_0.txt AC 1053 ms 123904 KB
test_1000_150305_97998860_-32315575.txt AC 1087 ms 125568 KB
test_1000_1_0_0.txt AC 1060 ms 124744 KB
test_1000_1_2_0.txt AC 1084 ms 124144 KB
test_1000_1_2_2.txt AC 1091 ms 125340 KB
test_1000_3308678_-800700076_-350719868.txt AC 1066 ms 123664 KB
test_1000_3608549_811923525_689232859.txt AC 1100 ms 125316 KB
test_1000_3728577_-145414503_-969430020.txt AC 1080 ms 123908 KB
test_1000_537976_11297496_224335992.txt AC 1074 ms 124712 KB
test_10_227248639_454497278_0B.txt AC 1054 ms 126104 KB
test_11_692637325_-181424149_-938839075B.txt AC 1012 ms 122756 KB
test_130_95365311_-667557177_-286095933.txt AC 1077 ms 124640 KB
test_131_18204705_-145637640_0.txt AC 1043 ms 125792 KB
test_13_260236679_-780710037_-520473358B.txt AC 1045 ms 124524 KB
test_13_269280357_807841071_269280357B.txt AC 1043 ms 124740 KB
test_13_96859935_0_-581159610B.txt AC 1164 ms 124212 KB
test_16_40374395_-40374395_-565241530B.txt AC 1052 ms 125584 KB
test_1_151403858_0_0AB.txt AC 1059 ms 124092 KB
test_1_1_0_1AB.txt AC 1040 ms 124144 KB
test_1_1_2_0AB.txt AC 991 ms 123004 KB
test_1_200416616_-430405070_-79858930AB.txt AC 1063 ms 124452 KB
test_1_320861287_0_0AB.txt AC 1058 ms 123828 KB
test_1_445441131_0_0AB.txt AC 1059 ms 124848 KB
test_210_28974130_0_260767170.txt AC 1064 ms 125232 KB
test_217_321156_24407856_22480920.txt AC 1041 ms 124388 KB
test_21_304856339_609712678_914569017B.txt AC 1042 ms 124816 KB
test_26_214390232_-857560928_428780464B.txt AC 1029 ms 123184 KB
test_289_421462830_-487186374_-417635361.txt AC 1017 ms 122616 KB
test_2_91743015_0_183486030AB.txt AC 1054 ms 125872 KB
test_30_10000000_-300000000_0B.txt AC 1045 ms 124808 KB
test_30_10000000_0_300000000B.txt AC 1032 ms 124612 KB
test_30_10000000_150000000_-150000000B.txt AC 1048 ms 124484 KB
test_30_54228128_0_813421920B.txt AC 1062 ms 124556 KB
test_339_4475128_957677392_281933064.txt AC 1044 ms 125748 KB
test_3_165357536_496072608_0AB.txt AC 1064 ms 123676 KB
test_3_357154050_-106436394_768502001AB.txt AC 1048 ms 124280 KB
test_3_721501125_-568833455_353553641AB.txt AC 1068 ms 125684 KB
test_3_893846474_0_0AB.txt AC 1044 ms 125832 KB
test_480_402960_-131767920_-34654560.txt AC 1046 ms 124704 KB
test_4_291388018_-291388018_0AB.txt AC 1049 ms 124988 KB
test_507_3516183_-879045750_-253165176.txt AC 1029 ms 123164 KB
test_515_8606048_-25818144_8606048.txt AC 1054 ms 125560 KB
test_522_2286376_-230923976_-18291008.txt AC 1070 ms 125680 KB
test_5_318547875_955643625_-637095750AB.txt AC 1016 ms 122560 KB
test_5_704387671_-704387671_0AB.txt AC 1012 ms 123880 KB
test_5_82323965_639854915_-688317394AB.txt AC 1061 ms 125604 KB
test_676_198114948_0_792459792.txt AC 1097 ms 125652 KB
test_688_151937211_-286341114_10198771.txt AC 1038 ms 123888 KB
test_6_187422602_374845204_-374845204AB.txt AC 1164 ms 123784 KB
test_6_346164451_0_0AB.txt AC 1030 ms 124992 KB
test_6_99058019_194123640_-837769837AB.txt AC 1029 ms 124856 KB
test_71_367604060_367604060_0.txt AC 1025 ms 123052 KB
test_752_120973200_0_-725839200.txt AC 1048 ms 122672 KB
test_772_881340073_0_0.txt AC 1078 ms 124848 KB
test_777_125719576_-499451637_822057459.txt AC 1059 ms 124744 KB
test_7_166330212_166330212_-332660424AB.txt AC 1056 ms 124080 KB
test_7_89698746_448493730_-179397492AB.txt AC 1037 ms 124512 KB
test_839_166155061_0_-332310122.txt AC 1040 ms 125588 KB
test_839_923157_923157_564972084.txt AC 1072 ms 124988 KB
test_849_415705_290993500_0.txt AC 1093 ms 125584 KB
test_873_418406_2928842_322172620.txt AC 1088 ms 124572 KB
test_8_10000000_-40000000_-40000000AB.txt AC 1046 ms 124460 KB
test_8_10000000_0_80000000AB.txt AC 1091 ms 124256 KB
test_8_10000000_80000000_0AB.txt AC 1077 ms 125768 KB
test_981_159373724_-637494896_-159373724.txt AC 1117 ms 125240 KB
test_9_283198156_849594468_849594468B.txt AC 1056 ms 124620 KB