Submission #4044691


Source Code Expand

import java.util.*;
import java.awt.*;
import java.awt.geom.*;
import static java.lang.System.*;
import static java.lang.Math.*;
public class Main {
    public static void main(String[] $) {
        Scanner sc = new Scanner(in);
        int n=sc.nextInt(),ng1=sc.nextInt(),ng2=sc.nextInt(),ng3=sc.nextInt();
        ArrayDeque<Point> stack=new ArrayDeque<>();
        stack.push(new Point(n,0));
        while (!stack.isEmpty()){
            Point p=stack.pop();
            if(p.x==ng1||p.x==ng2||p.x==ng3||p.y>100||p.x<0)continue;
            else if(p.x==0){
                out.println("YES");
                exit(0);
            }
            stack.push(new Point(p.x-1,p.y+1));
            stack.push(new Point(p.x-2,p.y+1));
            stack.push(new Point(p.x-3,p.y+1));
        }
        out.println("NO");
    }
}

Submission Info

Submission Time
Task C - 123引き算
User NS601023
Language Java8 (OpenJDK 1.8.0)
Score 0
Code Size 849 Byte
Status TLE
Exec Time 2110 ms
Memory 345940 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 22
TLE × 9
Set Name Test Cases
All sample_01.txt, sample_02.txt, sample_03.txt, test_143_142_141_140.txt, test_1_1_2_3.txt, test_1_2_3_4.txt, test_200_200_2_3.txt, test_231_77_78_80.txt, test_235_124_126_125.txt, test_253_45_47_48.txt, test_297_223_224_225.txt, test_297_294_292_290.txt, test_297_297_30_83.txt, test_297_3_43_72.txt, test_298_125_123_124.txt, test_298_293_295_291.txt, test_298_298_4_8.txt, test_298_36_72_98.txt, test_298_55_3_43.txt, test_298_92_91_295.txt, test_299_200_151_65.txt, test_299_240_35_154.txt, test_299_300_299_298.txt, test_299_33_242_151.txt, test_299_56_57_58.txt, test_299_66_132_198.txt, test_300_271_44_68.txt, test_300_299_298_296.txt, test_300_30_99_183.txt, test_300_4_5_6.txt, test_84_34_64_36.txt
Case Name Status Exec Time Memory
sample_01.txt AC 93 ms 21716 KB
sample_02.txt AC 93 ms 21588 KB
sample_03.txt TLE 2110 ms 345940 KB
test_143_142_141_140.txt AC 92 ms 20948 KB
test_1_1_2_3.txt AC 92 ms 21332 KB
test_1_2_3_4.txt AC 102 ms 21716 KB
test_200_200_2_3.txt AC 92 ms 21844 KB
test_231_77_78_80.txt AC 92 ms 19156 KB
test_235_124_126_125.txt TLE 2110 ms 344528 KB
test_253_45_47_48.txt AC 92 ms 20560 KB
test_297_223_224_225.txt TLE 2110 ms 343380 KB
test_297_294_292_290.txt AC 95 ms 17876 KB
test_297_297_30_83.txt AC 93 ms 21332 KB
test_297_3_43_72.txt AC 93 ms 20948 KB
test_298_125_123_124.txt TLE 2110 ms 341972 KB
test_298_293_295_291.txt TLE 2106 ms 344660 KB
test_298_298_4_8.txt AC 92 ms 21332 KB
test_298_36_72_98.txt AC 92 ms 20564 KB
test_298_55_3_43.txt AC 95 ms 19284 KB
test_298_92_91_295.txt AC 90 ms 18644 KB
test_299_200_151_65.txt AC 94 ms 21588 KB
test_299_240_35_154.txt AC 93 ms 20564 KB
test_299_300_299_298.txt AC 93 ms 21076 KB
test_299_33_242_151.txt TLE 2109 ms 341712 KB
test_299_56_57_58.txt TLE 2110 ms 341972 KB
test_299_66_132_198.txt AC 93 ms 21204 KB
test_300_271_44_68.txt AC 93 ms 22612 KB
test_300_299_298_296.txt AC 95 ms 19668 KB
test_300_30_99_183.txt TLE 2110 ms 344148 KB
test_300_4_5_6.txt TLE 2110 ms 343380 KB
test_84_34_64_36.txt AC 92 ms 18772 KB