結果
問題 | No.279 木の数え上げ |
ユーザー | tsunabit |
提出日時 | 2018-05-27 19:23:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,315 bytes |
コンパイル時間 | 3,395 ms |
コンパイル使用メモリ | 75,872 KB |
実行使用メモリ | 45,948 KB |
最終ジャッジ日時 | 2024-06-28 19:08:38 |
合計ジャッジ時間 | 7,776 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
import java.util.*; import java.util.stream.Stream; // ***問題文***kamipeipaa君は木が大好きですが,今日は文字列で遊んでいます。 // kamipeipaa君は文字列Sを並び替えたときに"tree"という部分文字列をいくつ作ることが可能か興味があります。 // 教えてあげてください。 // ***入力*** // S // kamipeipaa君が持つ英字小文字のみからなる文字列S(1≤|S|≤106)が1行で与えられる。 // ***出力*** // Sを自由に並び替えたときに作ることができる"tree"という部分文字列の数の最大値を1行で出力してください。 // 改行を忘れないこと。 public class No279 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); String s = sc.next(); int[] sa = new int[3]; for(int i = 0; i < s.length(); i++) { // System.out.println(s.charAt(i)); // if("t".equals(s.charAt(i))) { if('t' == s.charAt(i)) { sa[0] += 1; } else if('r' == s.charAt(i)){ sa[1] += 1; } else if('e' == s.charAt(i)) { sa[2] += 1; } } for(int i = 0; i < 3; i++) { System.out.println(sa[i]); } System.out.println(Math.min(Math.min(sa[0], sa[1]), sa[2] / 2)); } }