結果
問題 | No.587 七対子 |
ユーザー |
![]() |
提出日時 | 2017-11-03 22:24:55 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 5,266 bytes |
コンパイル時間 | 1,054 ms |
コンパイル使用メモリ | 118,668 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-07-19 19:38:34 |
合計ジャッジ時間 | 3,513 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
コンパイルメッセージ
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.Generic;using System.Diagnostics;using System.IO;using System.Linq;using System.Numerics;using System.Text;using static System.Math;using static System.Linq.Enumerable;using static Extentions;using static System.Console;public static class Program{#region Scannersstatic Scanner _scanner;static char C => _scanner.NextChar();static string S => _scanner.NextString();static int I => _scanner.NextInt();static long L => _scanner.NextLong();static BigInteger B => _scanner.NextBigInteger();static double D => _scanner.NextDouble();static decimal M => _scanner.NextDecimal();#endregionpublic static void Solve(){var s = S.ToCharArray();Array.Sort(s);var gs = s.GroupBy(c => c);if (gs.Count(g => g.Count() == 1) == 1 && gs.Count() == 7)WriteLine(gs.Single(g => g.Count() == 1).Single());elseWriteLine("Impossible");}public static void Main(){Console.SetOut(new StreamWriter(Console.OpenStandardOutput()){NewLine = "\n",#if DEBUGAutoFlush = true,#elseAutoFlush = false,#endif});_scanner = new Scanner(Console.OpenStandardInput());Solve();Console.Out.Flush();}}public static partial class Extentions{}#region Library// not testedpublic class Scanner{private readonly Stream _stream;private const int _bufferSize = 1024;private readonly byte[] _buf = new byte[_bufferSize];private int _len, _ptr;public Scanner(Stream stream){_stream = stream;}public byte ReadByte(){if (_ptr >= _len) { _len = _stream.Read(_buf, 0, 1024); _ptr = 0; }return _buf[_ptr++];}public char ReadChar() => (char)ReadByte();public string ReadLine(){var r = new StringBuilder();if (_ptr == 0) r.Append(ReadChar());for (; _ptr < _len; _ptr++) r.Append((char)_buf[_ptr]);return r.ToString();}public char NextChar() => char.Parse(NextString());public string NextString(){var r = new StringBuilder();var b = ReadChar();while (b != ' ' && b != '\n') { r.Append(b); b = ReadChar(); }return r.ToString();}public int NextInt() => (int)NextLong();public long NextLong(){var r = 0L;var b = ReadByte();var n = b == '-';if (n) b = ReadByte();while (b != ' ' && b != '\n') { r = r * 10 + b - '0'; b = ReadByte(); }return n ? -r : r;}public BigInteger NextBigInteger(){var r = new BigInteger();var b = ReadByte();var n = b == '-';if (n) b = ReadByte();while (b != ' ' && b != '\n') { r = r * 10 + b - '0'; b = ReadByte(); }return n ? -r : r;}public double NextDouble(){var i = 0L;var b = ReadByte();var n = b == '-';if (n) b = ReadByte();while (b != '.') { i = i * 10 + b - '0'; b = ReadByte(); }var f = 0L;var p = 0;while (b != ' ' && b != '\n') { f = f * 10 + b - '0'; b = ReadByte(); p++; }var r = i + f / Pow(10.0, p);return n ? -r : r;}public decimal NextDecimal() => decimal.Parse(NextString());public T Next<T>(Func<string, T> parser) => parser(NextString());}public static partial class Extentions{public static void Assert(bool condition){if (!condition) throw new Exception();}public static string AsString(this IEnumerable<char> source) => new string(source.ToArray());public static void ForEach<T>(this IEnumerable<T> source, Action<T> action){foreach (var item in source) action(item);}public static void ForEach<T, _>(this IEnumerable<T> source, Func<T, _> func){foreach (var item in source) func(item);}public static void ForEach<T>(this IEnumerable<T> source, Action<T, int> action){var i = 0;foreach (var item in source) action(item, i++);}public static void ForEach<T, _>(this IEnumerable<T> source, Func<T, int, _> func){var i = 0;foreach (var item in source) func(item, i++);}public static void Repeat(int count, Action action){for (var i = 0; i < count; i++) action();}public static void Repeat(int count, Action<int> action){for (var i = 0; i < count; i++) action(i);}public static IEnumerable<T> Repeat<T>(Func<T> func){for (var i = 0; ; i++) yield return func();}public static IEnumerable<T> Repeat<T>(int count, Func<T> func){for (var i = 0; i < count; i++) yield return func();}public static IEnumerable<T> Repeat<T>(Func<int, T> func){for (var i = 0; ; i++) yield return func(i);}public static IEnumerable<T> Repeat<T>(int count, Func<int, T> func){for (var i = 0; i < count; i++) yield return func(i);}public static void Swap<T>(ref T x, ref T y){var tmp = x; x = y; y = tmp;}}#endregion