結果
問題 | No.279 木の数え上げ |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-12 20:30:02 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 1,983 ms |
コンパイル使用メモリ | 74,740 KB |
実行使用メモリ | 129,880 KB |
最終ジャッジ日時 | 2024-05-04 11:05:13 |
合計ジャッジ時間 | 9,964 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
41,616 KB |
testcase_01 | AC | 112 ms
41,172 KB |
testcase_02 | AC | 102 ms
41,816 KB |
testcase_03 | AC | 110 ms
41,772 KB |
testcase_04 | AC | 107 ms
41,172 KB |
testcase_05 | AC | 108 ms
41,712 KB |
testcase_06 | AC | 120 ms
41,300 KB |
testcase_07 | AC | 122 ms
41,280 KB |
testcase_08 | AC | 122 ms
41,444 KB |
testcase_09 | AC | 106 ms
41,648 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
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); } }