結果
| 問題 | No.1249 小学校1年生の夢 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2023-04-20 14:06:12 | 
| 言語 | C#(csc) (csc 3.9.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 24 ms / 2,000 ms | 
| コード長 | 2,420 bytes | 
| コンパイル時間 | 1,974 ms | 
| コンパイル使用メモリ | 105,216 KB | 
| 実行使用メモリ | 17,920 KB | 
| 最終ジャッジ日時 | 2024-10-15 12:22:01 | 
| 合計ジャッジ時間 | 3,140 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 30 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
/*
You are the homeroom teacher of the first grade of Yuki Elementary School and you are grading an arithmetic test. The test includes a question in which you are asked to compute The answer to this question is written in the answer sheet you are now grading. Is this answer correct?
Input:
A B C
Output:
If the answer is correct, print "Correct"; if it is incorrect, print "Incorrect". However, you must write a new line at the end of the answer.
*/
using System;
using System.Linq;
using Internal;
using System.Collections.Generic;
using System.Text;
class Scanner
{
    string[] s;
    int i;
    char[] cs = new char[] { ' ' };
    public Scanner()
    {
        s = new string[0];
        i = 0;
    }
    public string Next()
    {
        if (i < s.Length) return s[i++];
        string st = Console.ReadLine();
        while (st == "") st = Console.ReadLine();
        s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
        if (s.Length == 0) return Next();
        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());
    }
    public ulong NextUlong()
    {
        return ulong.Parse(Next());
    }
    public decimal NextDecimal()
    {
        return decimal.Parse(Next());
    }
    public int[] ArrayInt(int N, int add = 0)
    {
        int[] Array = new int[N];
        for (int i = 0; i < N; i++)
        {
            Array[i] = NextInt() + add;
        }
        return Array;
    }
    public double[] ArrayDouble(int N, double add = 0)
    {
        double[] Array = new double[N];
        for (int i = 0; i < N; i++)
        {
            Array[i] = NextDouble() + add;
        }
        return Array;
    }
    public long[] ArrayLong(long N, long add = 0)
    {
        long[] Array = new long[N];
        for (long i = 0; i < N; i++)
        {
            Array[i] = NextLong() + add;
        }
        return Array;
    }
}
class Program
{
    static void Main()
    {
        Scanner sc = new Scanner();
        int A = sc.NextInt();
        int B = sc.NextInt();
        int C = sc.NextInt();
        if (A + B == C)
        {
            Console.WriteLine("Correct");
        }
        else
        {
            Console.WriteLine("Incorrect");
        }
    }
}
            
            
            
        