結果
問題 | No.548 国士無双 |
ユーザー | pirorirori_n712 |
提出日時 | 2018-08-21 02:38:50 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 936 bytes |
コンパイル時間 | 892 ms |
コンパイル使用メモリ | 114,016 KB |
実行使用メモリ | 27,024 KB |
最終ジャッジ日時 | 2024-09-17 14:52:39 |
合計ジャッジ時間 | 2,221 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
24,728 KB |
testcase_01 | AC | 29 ms
26,852 KB |
testcase_02 | AC | 31 ms
25,048 KB |
testcase_03 | AC | 31 ms
25,004 KB |
testcase_04 | AC | 32 ms
27,024 KB |
testcase_05 | AC | 30 ms
24,860 KB |
testcase_06 | AC | 31 ms
26,960 KB |
testcase_07 | AC | 29 ms
24,876 KB |
testcase_08 | AC | 29 ms
24,988 KB |
testcase_09 | AC | 29 ms
23,092 KB |
testcase_10 | AC | 29 ms
25,108 KB |
testcase_11 | AC | 29 ms
24,988 KB |
testcase_12 | AC | 27 ms
25,240 KB |
testcase_13 | AC | 29 ms
24,728 KB |
testcase_14 | AC | 29 ms
22,708 KB |
testcase_15 | AC | 30 ms
24,936 KB |
testcase_16 | AC | 30 ms
26,896 KB |
testcase_17 | AC | 31 ms
25,136 KB |
testcase_18 | AC | 30 ms
24,984 KB |
testcase_19 | AC | 29 ms
25,008 KB |
testcase_20 | AC | 28 ms
22,836 KB |
testcase_21 | AC | 29 ms
24,928 KB |
testcase_22 | AC | 29 ms
24,860 KB |
testcase_23 | AC | 31 ms
24,988 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||str.Last()>109) { 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); } } }