結果
問題 | No.279 木の数え上げ |
ユーザー | funakoshi |
提出日時 | 2019-06-27 13:35:43 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 113 ms / 2,000 ms |
コード長 | 1,022 bytes |
コンパイル時間 | 3,012 ms |
コンパイル使用メモリ | 102,912 KB |
実行使用メモリ | 24,576 KB |
最終ジャッジ日時 | 2024-06-27 20:01:53 |
合計ジャッジ時間 | 5,630 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
17,408 KB |
testcase_01 | AC | 21 ms
17,536 KB |
testcase_02 | AC | 21 ms
17,152 KB |
testcase_03 | AC | 21 ms
17,536 KB |
testcase_04 | AC | 20 ms
17,536 KB |
testcase_05 | AC | 20 ms
17,536 KB |
testcase_06 | AC | 21 ms
17,536 KB |
testcase_07 | AC | 21 ms
17,408 KB |
testcase_08 | AC | 21 ms
17,152 KB |
testcase_09 | AC | 20 ms
17,152 KB |
testcase_10 | AC | 103 ms
24,448 KB |
testcase_11 | AC | 41 ms
21,424 KB |
testcase_12 | AC | 79 ms
22,912 KB |
testcase_13 | AC | 32 ms
19,884 KB |
testcase_14 | AC | 113 ms
24,576 KB |
testcase_15 | AC | 94 ms
23,808 KB |
testcase_16 | AC | 89 ms
23,680 KB |
testcase_17 | AC | 105 ms
24,320 KB |
testcase_18 | AC | 66 ms
22,400 KB |
testcase_19 | AC | 103 ms
24,192 KB |
testcase_20 | AC | 109 ms
24,576 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.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoderTest { class Program { static void Main(string[] args) { string input = Console.ReadLine(); int tcnt = 0; int rcnt = 0; int ecnt = 0; int tree = 0; for(int i=0;i<input.Length;i++) { string temp = input.Substring(i, 1); if (temp == "t") { tcnt++; } else if (temp == "r") { rcnt++; } else if (temp == "e") { ecnt++; } } while(tcnt>=1&&rcnt>=1&&ecnt>=2) { tcnt--; rcnt--; ecnt -= 2; tree++; } Console.WriteLine(tree); } } }