結果
問題 | No.342 一番ワロタww |
ユーザー | YamaKasa |
提出日時 | 2018-09-16 22:14:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,444 bytes |
コンパイル時間 | 2,484 ms |
コンパイル使用メモリ | 86,076 KB |
実行使用メモリ | 41,492 KB |
最終ジャッジ日時 | 2024-07-18 07:32:04 |
合計ジャッジ時間 | 5,376 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
41,152 KB |
testcase_01 | AC | 131 ms
41,404 KB |
testcase_02 | AC | 128 ms
41,492 KB |
testcase_03 | AC | 127 ms
41,428 KB |
testcase_04 | AC | 128 ms
41,408 KB |
testcase_05 | AC | 130 ms
41,264 KB |
testcase_06 | AC | 128 ms
41,264 KB |
testcase_07 | WA | - |
testcase_08 | AC | 129 ms
40,980 KB |
testcase_09 | AC | 129 ms
41,188 KB |
testcase_10 | AC | 126 ms
41,412 KB |
testcase_11 | AC | 127 ms
41,380 KB |
testcase_12 | AC | 128 ms
41,400 KB |
testcase_13 | AC | 126 ms
41,400 KB |
testcase_14 | AC | 127 ms
41,056 KB |
testcase_15 | AC | 129 ms
41,420 KB |
testcase_16 | AC | 126 ms
41,136 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String S = scan.next(); scan.close(); if(S.substring(0, 1).equals("w")) { for(int i = 0; i < S.length(); i++) { if(S.substring(i, i + 1).equals("w")) { continue; }else { S = S.substring(i, S.length()); break; } } } S = S + " "; String []ary = new String[S.length()]; for(int i = 0; i < S.length(); i++) { ary[i] = S.substring(i, i + 1); } int l = ary.length; int max = 0; List<Data>list = new ArrayList<Data>(); int begin = 0; for(int i = 0; i < l; i++) { if(ary[i].equals("w")) { int cnt = 1; int t = i; i++; while(i < l) { if(ary[i].equals("w")) { cnt ++; i++; continue; }else { String s = S.substring(begin, t); begin = i; Data d = new Data(s, cnt); list.add(d); if(max < cnt) { max = cnt; } break; } } } } StringBuilder sb = new StringBuilder(); for(int i = 0; i < list.size(); i++) { if(list.get(i).getN() == max) { sb.append(list.get(i).getS()).append("\n"); } } System.out.print(sb.toString()); } } class Data{ String s; int n; public Data(String s, int n) { this.s = s; this.n = n; } String getS() { return s; } int getN() { return n; } }