Submission #188386


Source Code Expand

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace abc4
{
    class Program
    {
        static void Main()
        {
            int n = int.Parse(Console.ReadLine());
            int[] ng = new int[3];
            bool ans = true;
            for (int i = 0; i < 3; ++i)
            {
                ng[i] = int.Parse(Console.ReadLine());
                if (n == ng[i])
                {
                    ans = false;
                    break;
                }
            }
            if (ans)
            {
                Array.Sort(ng);

                if (ng[0] + 1 == ng[1] && ng[1] + 1 == ng[2])
                    ans = false;
                else if (n == 300 && (ng[0] % 3 == 0 || ng[1] % 3 == 0 || ng[2] % 3 == 0))
                    ans = false;
            }
            if (ans)
                Console.WriteLine("YES");
            else
                Console.WriteLine("NO");
        }
    }
}

Submission Info

Submission Time
Task C - 123引き算
User riantkb
Language C# (Mono 2.10.8.1)
Score 0
Code Size 1043 Byte
Status WA
Exec Time 136 ms
Memory 7828 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 25
WA × 3
Set Name Test Cases
All 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 130 ms 7784 KB
sample_02.txt AC 134 ms 7772 KB
sample_03.txt AC 133 ms 7772 KB
test_143_142_141_140.txt AC 131 ms 7768 KB
test_1_1_2_3.txt AC 131 ms 7732 KB
test_1_2_3_4.txt WA 136 ms 7768 KB
test_200_200_2_3.txt AC 132 ms 7700 KB
test_231_77_78_80.txt AC 133 ms 7772 KB
test_235_124_126_125.txt AC 134 ms 7776 KB
test_253_45_47_48.txt AC 133 ms 7780 KB
test_297_223_224_225.txt AC 133 ms 7780 KB
test_297_294_292_290.txt AC 134 ms 7800 KB
test_297_297_30_83.txt AC 128 ms 7696 KB
test_297_3_43_72.txt AC 136 ms 7776 KB
test_298_125_123_124.txt AC 135 ms 7816 KB
test_298_293_295_291.txt WA 135 ms 7776 KB
test_298_298_4_8.txt AC 129 ms 7692 KB
test_298_36_72_98.txt AC 133 ms 7776 KB
test_298_55_3_43.txt AC 130 ms 7784 KB
test_298_92_91_295.txt AC 134 ms 7768 KB
test_299_200_151_65.txt AC 135 ms 7768 KB
test_299_240_35_154.txt AC 134 ms 7772 KB
test_299_300_299_298.txt AC 131 ms 7704 KB
test_299_33_242_151.txt WA 136 ms 7780 KB
test_299_56_57_58.txt AC 134 ms 7764 KB
test_299_66_132_198.txt AC 132 ms 7772 KB
test_300_271_44_68.txt AC 132 ms 7788 KB
test_300_299_298_296.txt AC 134 ms 7828 KB
test_300_30_99_183.txt AC 133 ms 7804 KB
test_300_4_5_6.txt AC 133 ms 7776 KB
test_84_34_64_36.txt AC 133 ms 7772 KB