結果
問題 | No.548 国士無双 |
ユーザー | pirorirori_n712 |
提出日時 | 2018-08-21 02:30:15 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 920 bytes |
コンパイル時間 | 779 ms |
コンパイル使用メモリ | 116,672 KB |
実行使用メモリ | 27,172 KB |
最終ジャッジ日時 | 2024-09-17 14:52:35 |
合計ジャッジ時間 | 2,151 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,992 KB |
testcase_01 | AC | 29 ms
25,012 KB |
testcase_02 | AC | 28 ms
25,108 KB |
testcase_03 | AC | 28 ms
24,852 KB |
testcase_04 | AC | 27 ms
24,880 KB |
testcase_05 | AC | 30 ms
26,908 KB |
testcase_06 | AC | 27 ms
22,832 KB |
testcase_07 | AC | 26 ms
24,752 KB |
testcase_08 | AC | 28 ms
24,884 KB |
testcase_09 | AC | 28 ms
24,988 KB |
testcase_10 | AC | 29 ms
24,860 KB |
testcase_11 | AC | 28 ms
25,108 KB |
testcase_12 | AC | 28 ms
24,988 KB |
testcase_13 | AC | 28 ms
24,988 KB |
testcase_14 | AC | 28 ms
26,904 KB |
testcase_15 | AC | 27 ms
24,872 KB |
testcase_16 | AC | 28 ms
24,984 KB |
testcase_17 | AC | 29 ms
26,888 KB |
testcase_18 | AC | 28 ms
24,728 KB |
testcase_19 | AC | 27 ms
22,712 KB |
testcase_20 | AC | 27 ms
26,752 KB |
testcase_21 | AC | 27 ms
24,732 KB |
testcase_22 | AC | 28 ms
22,968 KB |
testcase_23 | AC | 28 ms
27,172 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.Linq; using System.Collections.Generic; class No548 { static void Main() { var str = Console.ReadLine().OrderBy(x => x); var count = str.Distinct().Count(); char[] strArray = new char[] { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm' }; List<char> ansList = new List<char>(); if (count < 12) { Console.WriteLine("Impossible"); return; } else if (count == 12) { for (int i = 0; i < 13; ++i) { if (!str.Contains(strArray[i])) { ansList.Add(strArray[i]); break; } } } else { ansList.AddRange(strArray); } foreach (var ans in ansList) { Console.WriteLine(ans); } } }