結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー りあんりあん
提出日時 2016-11-16 00:55:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 104,192 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-11-26 01:58:17
合計ジャッジ時間 2,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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

class Program
{
    static void Main()
    {
        var sc = new Scan();
        string[] a = {sc.Str, sc.Str};
        int lim = 12345;
        
        for (int i = 0; i < 2; i++)
        {
            for (int j = 0; j <= lim; j++)
            {
                if (a[i] == j.ToString()) break;

                if (j == lim)
                {
                    Console.WriteLine("NG");
                    return;
                }
            }
        }
        Console.WriteLine("OK");
    }
}
class Scan
{
    public int Int { get { return int.Parse(Str); } }
    public long Long { get { return long.Parse(Str); } }
    public string Str { get { return Console.ReadLine().Trim(); } }
}
0