結果
問題 | No.290 1010 |
ユーザー | mban |
提出日時 | 2016-12-25 10:58:41 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 730 bytes |
コンパイル時間 | 866 ms |
コンパイル使用メモリ | 111,800 KB |
実行使用メモリ | 29,000 KB |
最終ジャッジ日時 | 2024-05-08 14:17:40 |
合計ジャッジ時間 | 2,671 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
23,508 KB |
testcase_01 | AC | 24 ms
25,560 KB |
testcase_02 | AC | 24 ms
21,488 KB |
testcase_03 | AC | 24 ms
23,388 KB |
testcase_04 | AC | 24 ms
23,392 KB |
testcase_05 | AC | 23 ms
23,524 KB |
testcase_06 | AC | 25 ms
25,820 KB |
testcase_07 | AC | 23 ms
23,512 KB |
testcase_08 | AC | 24 ms
25,684 KB |
testcase_09 | AC | 24 ms
23,520 KB |
testcase_10 | AC | 25 ms
25,828 KB |
testcase_11 | AC | 24 ms
25,820 KB |
testcase_12 | AC | 24 ms
23,984 KB |
testcase_13 | AC | 24 ms
25,440 KB |
testcase_14 | AC | 25 ms
27,608 KB |
testcase_15 | AC | 25 ms
23,396 KB |
testcase_16 | AC | 23 ms
23,780 KB |
testcase_17 | AC | 24 ms
23,648 KB |
testcase_18 | AC | 25 ms
23,636 KB |
testcase_19 | AC | 25 ms
25,688 KB |
testcase_20 | AC | 34 ms
28,776 KB |
testcase_21 | AC | 33 ms
26,588 KB |
testcase_22 | AC | 32 ms
29,000 KB |
testcase_23 | AC | 32 ms
26,672 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"); } }