結果
| 問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
| コンテスト | |
| ユーザー |
りあん
|
| 提出日時 | 2016-07-08 20:35:34 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 779 bytes |
| コンパイル時間 | 903 ms |
| コンパイル使用メモリ | 103,680 KB |
| 実行使用メモリ | 17,792 KB |
| 最終ジャッジ日時 | 2024-11-26 01:52:00 |
| 合計ジャッジ時間 | 1,947 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 10 WA * 3 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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};
for (int i = 0; i < 2; i++)
{
for (int j = 0; j <= 1000; j++)
{
if (a[i] == j.ToString()) break;
if (j == 1000)
{
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(); } }
}
りあん