結果
問題 | No.290 1010 |
ユーザー | mban |
提出日時 | 2016-12-25 10:58:41 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 730 bytes |
コンパイル時間 | 785 ms |
コンパイル使用メモリ | 109,768 KB |
実行使用メモリ | 28,772 KB |
最終ジャッジ日時 | 2024-12-14 19:05:10 |
合計ジャッジ時間 | 2,669 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
23,272 KB |
testcase_01 | AC | 22 ms
23,776 KB |
testcase_02 | AC | 23 ms
23,388 KB |
testcase_03 | AC | 23 ms
23,784 KB |
testcase_04 | AC | 23 ms
23,396 KB |
testcase_05 | AC | 22 ms
23,388 KB |
testcase_06 | AC | 23 ms
23,800 KB |
testcase_07 | AC | 24 ms
23,384 KB |
testcase_08 | AC | 23 ms
21,812 KB |
testcase_09 | AC | 24 ms
23,276 KB |
testcase_10 | AC | 23 ms
21,680 KB |
testcase_11 | AC | 23 ms
23,784 KB |
testcase_12 | AC | 23 ms
23,528 KB |
testcase_13 | AC | 24 ms
25,692 KB |
testcase_14 | AC | 22 ms
23,396 KB |
testcase_15 | AC | 23 ms
23,528 KB |
testcase_16 | AC | 24 ms
25,424 KB |
testcase_17 | AC | 24 ms
25,596 KB |
testcase_18 | AC | 23 ms
23,396 KB |
testcase_19 | AC | 22 ms
23,652 KB |
testcase_20 | AC | 32 ms
28,772 KB |
testcase_21 | AC | 32 ms
26,804 KB |
testcase_22 | AC | 32 ms
26,724 KB |
testcase_23 | AC | 32 ms
26,852 KB |
コンパイルメッセージ
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; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; class Magatro { static int N = int.Parse(Console.ReadLine()); static string S = Console.ReadLine(); static void Main() { if (N == 1) Console.WriteLine("NO"); else if (N == 2) { if (S == "00" || S == "11") Console.WriteLine("YES"); else Console.WriteLine("NO"); } else if (N == 3) { if (S == "101" || S == "010") Console.WriteLine("NO"); else Console.WriteLine("YES"); } else Console.WriteLine("YES"); } }