結果
問題 | No.279 木の数え上げ |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-12 20:30:02 |
言語 | Java (openjdk 23) |
結果 |
MLE
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 75,332 KB |
実行使用メモリ | 130,568 KB |
最終ジャッジ日時 | 2024-11-25 21:34:17 |
合計ジャッジ時間 | 11,129 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
41,256 KB |
testcase_01 | AC | 111 ms
41,072 KB |
testcase_02 | AC | 126 ms
41,672 KB |
testcase_03 | AC | 118 ms
41,052 KB |
testcase_04 | AC | 116 ms
41,760 KB |
testcase_05 | AC | 106 ms
41,112 KB |
testcase_06 | AC | 105 ms
40,808 KB |
testcase_07 | AC | 104 ms
41,008 KB |
testcase_08 | AC | 113 ms
41,320 KB |
testcase_09 | AC | 116 ms
41,384 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 301 ms
54,088 KB |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.next(); String [] arr = S.split(""); int t = 0; int r = 0; int e = 0; for(int i=0; i<arr.length; i++){ if( "t".equals(arr[i]) ){ t++; }else if( "r".equals(arr[i]) ){ r++; }else if( "e".equals(arr[i]) ){ e++; } } int min = Math.min(t, Math.min(r,e/2) ); System.out.println(min); } }