結果
問題 | No.279 木の数え上げ |
ユーザー | AoiroFukurou |
提出日時 | 2016-01-06 15:07:08 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 659 bytes |
コンパイル時間 | 3,219 ms |
コンパイル使用メモリ | 75,032 KB |
実行使用メモリ | 119,128 KB |
最終ジャッジ日時 | 2024-09-19 12:15:28 |
合計ジャッジ時間 | 10,810 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
40,996 KB |
testcase_01 | AC | 111 ms
41,192 KB |
testcase_02 | AC | 124 ms
41,480 KB |
testcase_03 | AC | 124 ms
41,644 KB |
testcase_04 | AC | 122 ms
41,272 KB |
testcase_05 | AC | 125 ms
41,784 KB |
testcase_06 | AC | 127 ms
41,396 KB |
testcase_07 | AC | 122 ms
41,436 KB |
testcase_08 | AC | 123 ms
41,808 KB |
testcase_09 | AC | 121 ms
41,164 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 253 ms
48,356 KB |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
ソースコード
package yuki_coder; import java.util.Scanner; public class No_279 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.nextLine(); sc.close(); String[] str = new String[S.length()]; int t = 0; int r = 0; int e = 0; int tree = 0; int memory = 0; for(int i = 1; i <=S.length(); i++){ str[i-1] = S.substring(i-1, i); } for(int i = 0; i < S.length(); i++){ if(str[i].equals("t")){ t++; } if(str[i].equals("r")){ r++; } if(str[i].equals("e")){ e++; } } memory = t; if(memory > r){ memory = r; } if(memory > e/2){ memory = e/2; } tree = memory; System.out.println(tree); } }