結果
問題 | No.342 一番ワロタww |
ユーザー | かに |
提出日時 | 2016-02-12 22:48:46 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,123 bytes |
コンパイル時間 | 2,163 ms |
コンパイル使用メモリ | 80,648 KB |
実行使用メモリ | 57,124 KB |
最終ジャッジ日時 | 2024-09-22 04:45:35 |
合計ジャッジ時間 | 5,509 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 139 ms
54,532 KB |
testcase_02 | AC | 152 ms
55,016 KB |
testcase_03 | AC | 159 ms
54,892 KB |
testcase_04 | AC | 154 ms
54,988 KB |
testcase_05 | AC | 156 ms
54,864 KB |
testcase_06 | AC | 153 ms
54,776 KB |
testcase_07 | AC | 153 ms
54,840 KB |
testcase_08 | AC | 157 ms
54,972 KB |
testcase_09 | WA | - |
testcase_10 | AC | 154 ms
54,980 KB |
testcase_11 | AC | 152 ms
54,984 KB |
testcase_12 | AC | 152 ms
54,988 KB |
testcase_13 | AC | 158 ms
54,736 KB |
testcase_14 | WA | - |
testcase_15 | AC | 125 ms
53,876 KB |
testcase_16 | AC | 155 ms
55,112 KB |
ソースコード
import java.math.BigInteger; import java.util.ArrayDeque; import java.util.Queue; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); String s = sc.nextLine(); int l = 0; int maxi = -1; String tmp = "",maxs = new String(); Queue<String> que = new ArrayDeque<String>(); int i = 0; for(;i < s.length();){ l = 0; while(i < s.length() && s.charAt(i) != 'w'){ tmp = tmp + s.charAt(i); i++; } while(i < s.length() && s.charAt(i) == 'w'){ l++; i++; } if(l > maxi && tmp != ""){ maxi = l; while(!que.isEmpty()){ que.remove(); } que.add(tmp); tmp = ""; }else if(l == maxi && tmp != ""){ que.add(tmp); tmp = ""; } } if(l > maxi && tmp != ""){ maxi = l; while(!que.isEmpty()){ que.remove(); } que.add(tmp); tmp = ""; }else if(l == maxi && tmp != ""){ que.add(tmp); tmp = ""; } if(que.size() == 0){ System.out.println(""); }else{ while(!que.isEmpty()){ System.out.println(que.element()); que.remove(); } } } }