Submission #616149


Source Code Expand

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

class Program
{
    void Calc()
    {
        var sc = new Scanner();
        int a = sc.NextInt();
        int b = a / 25;
        Console.WriteLine(b);
    }

    static void Main()
    {
        byte[] inputBuffer = new byte[1024];
        Stream inputStream = Console.OpenStandardInput(inputBuffer.Length);
        Console.SetIn(new StreamReader(inputStream, Console.InputEncoding, false, inputBuffer.Length));
        new Program().Calc();
    }

    class Scanner
    {
        string[] s = new string[0];
        int i = 0;
        char[] cs = new char[] { ' ' };

        public string Next()
        {
            if (i < s.Length) return s[i++];
            s = Console.ReadLine().Split(cs, StringSplitOptions.RemoveEmptyEntries);
            i = 0;
            return s[i++];
        }
        public int NextInt() { return int.Parse(Next()); }
        public long NextLong() { return long.Parse(Next()); }
        public double NextDouble() { return double.Parse(Next()); }
    }
}

Submission Info

Submission Time
Task A - ニコニコ数
User yukih
Language C# (Mono 3.2.1.0)
Score 60
Code Size 1138 Byte
Status AC
Exec Time 126 ms
Memory 8880 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 113 ms 8872 KB
sample_02.txt AC 118 ms 8824 KB
test_01.txt AC 117 ms 8868 KB
test_02.txt AC 126 ms 8748 KB
test_03.txt AC 113 ms 8844 KB
test_04.txt AC 115 ms 8880 KB
test_05.txt AC 118 ms 8860 KB
test_06.txt AC 116 ms 8780 KB
test_07.txt AC 119 ms 8812 KB
test_08.txt AC 118 ms 8804 KB
test_09.txt AC 114 ms 8872 KB
test_10.txt AC 113 ms 8868 KB
test_11.txt AC 113 ms 8816 KB
test_12.txt AC 113 ms 8768 KB
test_13.txt AC 116 ms 8800 KB
test_14.txt AC 119 ms 8860 KB
test_15.txt AC 117 ms 8868 KB