結果
| 問題 |
No.279 木の数え上げ
|
| コンテスト | |
| ユーザー |
紙ぺーぱー
|
| 提出日時 | 2015-04-29 14:34:04 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 47 ms / 2,000 ms |
| コード長 | 1,217 bytes |
| コンパイル時間 | 1,038 ms |
| コンパイル使用メモリ | 115,336 KB |
| 実行使用メモリ | 31,540 KB |
| 最終ジャッジ日時 | 2024-10-14 14:45:28 |
| 合計ジャッジ時間 | 3,203 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
コンパイルメッセージ
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.Linq;
using System.Numerics;
static public class Program
{
static public void Main()
{
var s = Console.ReadLine();
s.ToCharArray().ValidateArray(x => 'a' <= x && x <= 'z');
readEOF();
var t = 0;
var r = 0;
var e = 0;
foreach (var x in s)
{
if (x == 't') t++;
else if (x == 'r') r++;
else if (x == 'e') e++;
}
var ans = new int[] { t, r, e / 2 };
Console.WriteLine(ans.Min());
}
static public void Swap<T>(ref T a, ref T b) { var tmp = a; a = b; b = tmp; }
static void readEOF()
{
if (Console.In.Peek() >= 0)
throw new Exception("invalid input too long input file");
}
}
static public class Ex
{
static public T Validate<T>(this T input, Func<T, bool> f)
{
if (!f(input))
throw new Exception("invalid input");
return input;
}
static public T[] ValidateArray<T>(this T[] input, Func<T, bool> f)
{
foreach (var x in input)
if (!f(x))
throw new Exception("invalid input");
return input;
}
}
紙ぺーぱー