Submission #616032


Source Code Expand

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


class Program
{
    static void Main(string[] args)
    {
        ulong[] NICO = { 25, 2525, 252525, 25252525, 2525252525, 2525252525 };
        int c = 0;
        ulong n = ulong.Parse(Console.ReadLine());
        for (ulong i = 1; i <= n; i++)
        {
            foreach(var v in NICO)
            {
                if (i % v == 0)
                {
                    c++;
                    break;
                }
            }
        }
        Console.WriteLine(c);
        Console.ReadKey();
    }
}

Submission Info

Submission Time
Task A - ニコニコ数
User arushiro
Language C# (Mono 3.2.1.0)
Score 0
Code Size 661 Byte
Status TLE
Exec Time 2561 ms
Memory 8884 KB

Judge Result

Set Name Sample Subtask1
Score / Max Score 0 / 0 0 / 60
Status
AC × 2
AC × 12
TLE × 5
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
Subtask1 sample_01.txt, sample_02.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt
Case Name Status Exec Time Memory
sample_01.txt AC 158 ms 8872 KB
sample_02.txt AC 1938 ms 8860 KB
test_01.txt AC 116 ms 8844 KB
test_02.txt AC 116 ms 8844 KB
test_03.txt AC 114 ms 8800 KB
test_04.txt AC 144 ms 8844 KB
test_05.txt AC 188 ms 8880 KB
test_06.txt AC 2390 ms 8860 KB
test_07.txt AC 616 ms 8848 KB
test_08.txt TLE 2559 ms 8132 KB
test_09.txt TLE 2561 ms 8124 KB
test_10.txt TLE 2561 ms 8136 KB
test_11.txt TLE 2560 ms 8180 KB
test_12.txt TLE 2561 ms 8144 KB
test_13.txt AC 2395 ms 8780 KB
test_14.txt AC 117 ms 8800 KB
test_15.txt AC 117 ms 8884 KB