結果
問題 | No.342 一番ワロタww |
ユーザー | mitsuo |
提出日時 | 2016-05-09 22:59:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 129 ms / 5,000 ms |
コード長 | 1,080 bytes |
コンパイル時間 | 2,103 ms |
コンパイル使用メモリ | 80,368 KB |
実行使用メモリ | 41,452 KB |
最終ジャッジ日時 | 2024-10-15 13:24:14 |
合計ジャッジ時間 | 4,835 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
40,908 KB |
testcase_01 | AC | 115 ms
41,184 KB |
testcase_02 | AC | 115 ms
41,196 KB |
testcase_03 | AC | 110 ms
40,076 KB |
testcase_04 | AC | 116 ms
41,452 KB |
testcase_05 | AC | 109 ms
39,824 KB |
testcase_06 | AC | 124 ms
41,136 KB |
testcase_07 | AC | 121 ms
41,316 KB |
testcase_08 | AC | 129 ms
41,152 KB |
testcase_09 | AC | 105 ms
39,976 KB |
testcase_10 | AC | 116 ms
41,244 KB |
testcase_11 | AC | 119 ms
41,076 KB |
testcase_12 | AC | 116 ms
41,236 KB |
testcase_13 | AC | 117 ms
41,100 KB |
testcase_14 | AC | 119 ms
41,152 KB |
testcase_15 | AC | 127 ms
41,244 KB |
testcase_16 | AC | 125 ms
41,312 KB |
ソースコード
package jp.fedom.challange.yuki.l2.q342; import java.util.ArrayList; import java.util.List; import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); List<String> input = new ArrayList<>(); while (sc.hasNext()) { input.add(sc.nextLine()); } System.out.println(solve(input)); sc.close(); } public static String solve(List<String> in) { String S = in.get(0); Pattern p = Pattern.compile("([^w]+)(w+)"); Matcher m = p.matcher(S); StringBuilder sb = new StringBuilder(); String d = System.lineSeparator(); int max = 0; while (m.find()) { if (m.groupCount() == 2) { if (max == m.group(0).length() - m.group(1).length()) { sb.append(m.group(1)).append(d); } else if (max < m.group(0).length() - m.group(1).length()) { sb = new StringBuilder(); sb.append(m.group(1)).append(d); max = m.group(0).length() - m.group(1).length(); } } } return sb.toString().trim(); } }