Submission #615756


Source Code Expand

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

namespace Dwango2016Prelims
{
    public class A
    {
        private void Run()
        {
            var N = long.Parse(Console.ReadLine().Trim());
            Console.WriteLine(N / 25);
        }

        private static void Main()
        {
            var old = Console.Out;
            using (var writer = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false })
            {
                Console.SetOut(writer);
                new A().Run();
                Console.Out.Flush();
                Console.SetOut(old);
            }
        }
    }
}

Submission Info

Submission Time
Task A - ニコニコ数
User Tan90909090
Language C# (Mono 3.2.1.0)
Score 60
Code Size 699 Byte
Status AC
Exec Time 201 ms
Memory 9756 KB

Judge Result

Set Name Sample Subtask1
Score / Max Score 0 / 0 60 / 60
Status
AC × 2
AC × 17
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 201 ms 9608 KB
sample_02.txt AC 151 ms 9676 KB
test_01.txt AC 151 ms 9728 KB
test_02.txt AC 155 ms 9648 KB
test_03.txt AC 151 ms 9700 KB
test_04.txt AC 152 ms 9700 KB
test_05.txt AC 150 ms 9728 KB
test_06.txt AC 149 ms 9688 KB
test_07.txt AC 150 ms 9688 KB
test_08.txt AC 151 ms 9556 KB
test_09.txt AC 161 ms 9692 KB
test_10.txt AC 150 ms 9632 KB
test_11.txt AC 154 ms 9648 KB
test_12.txt AC 148 ms 9588 KB
test_13.txt AC 150 ms 9732 KB
test_14.txt AC 185 ms 9756 KB
test_15.txt AC 191 ms 9652 KB