結果
問題 | No.548 国士無双 |
ユーザー | 14番 |
提出日時 | 2017-07-28 22:34:39 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,369 bytes |
コンパイル時間 | 2,764 ms |
コンパイル使用メモリ | 112,608 KB |
実行使用メモリ | 26,636 KB |
最終ジャッジ日時 | 2024-09-17 13:00:25 |
合計ジャッジ時間 | 2,052 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
22,452 KB |
testcase_01 | AC | 25 ms
24,468 KB |
testcase_02 | AC | 24 ms
24,464 KB |
testcase_03 | AC | 23 ms
24,624 KB |
testcase_04 | AC | 22 ms
24,336 KB |
testcase_05 | AC | 23 ms
24,212 KB |
testcase_06 | AC | 23 ms
24,592 KB |
testcase_07 | AC | 23 ms
24,076 KB |
testcase_08 | AC | 23 ms
24,496 KB |
testcase_09 | AC | 22 ms
24,336 KB |
testcase_10 | AC | 22 ms
24,452 KB |
testcase_11 | AC | 22 ms
24,624 KB |
testcase_12 | AC | 22 ms
24,336 KB |
testcase_13 | AC | 25 ms
24,468 KB |
testcase_14 | AC | 23 ms
26,504 KB |
testcase_15 | AC | 21 ms
24,196 KB |
testcase_16 | AC | 24 ms
26,636 KB |
testcase_17 | AC | 23 ms
22,452 KB |
testcase_18 | AC | 24 ms
26,500 KB |
testcase_19 | AC | 24 ms
24,580 KB |
testcase_20 | WA | - |
testcase_21 | AC | 24 ms
24,444 KB |
testcase_22 | AC | 23 ms
26,248 KB |
testcase_23 | AC | 27 ms
24,556 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.IO; using System.Linq; using System.Collections.Generic; using System.Text; public class Program { public void Proc() { string target = "abcdefghijklm"; string input = Reader.ReadLine(); bool isPossible = true; if(input.Any(a=>!target.Contains(a))) { isPossible = false; } if(isPossible) { if(input.Any(a=>input.Count(b=>b==a)>2)) { isPossible = false; } } if(isPossible) { if(input.All(a=>input.Count(b=>b==a)==1)) { target.OrderBy(a => a).ToList().ForEach(a=>Console.WriteLine(a)); } else { Console.WriteLine(target.First(a=>!input.Contains(a))); } } else { Console.WriteLine("Impossible"); } } public class Reader { private static StringReader sr; public static bool IsDebug = false; public static string ReadLine() { if (IsDebug) { if (sr == null) { sr = new StringReader(InputText.Trim()); } return sr.ReadLine(); } else { return Console.ReadLine(); } } private static string InputText = @" cbmlieadfghjk "; } public static void Main(string[] args) { #if DEBUG Reader.IsDebug = true; #endif Program prg = new Program(); prg.Proc(); } }