結果
問題 | No.342 一番ワロタww |
ユーザー | Tsukasa_Type |
提出日時 | 2018-05-20 21:02:37 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 753 bytes |
コンパイル時間 | 2,117 ms |
コンパイル使用メモリ | 79,804 KB |
実行使用メモリ | 41,472 KB |
最終ジャッジ日時 | 2024-06-28 14:47:00 |
合計ジャッジ時間 | 4,923 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 121 ms
41,052 KB |
testcase_02 | AC | 123 ms
40,876 KB |
testcase_03 | AC | 119 ms
40,796 KB |
testcase_04 | AC | 130 ms
41,292 KB |
testcase_05 | AC | 126 ms
41,244 KB |
testcase_06 | AC | 127 ms
41,436 KB |
testcase_07 | AC | 114 ms
40,072 KB |
testcase_08 | AC | 119 ms
40,364 KB |
testcase_09 | AC | 128 ms
41,200 KB |
testcase_10 | AC | 128 ms
41,252 KB |
testcase_11 | AC | 127 ms
41,468 KB |
testcase_12 | AC | 123 ms
41,040 KB |
testcase_13 | AC | 110 ms
40,060 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 112 ms
40,352 KB |
ソースコード
import static java.lang.System.*; import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String s = sc.nextLine(); s = s.replaceFirst("^w+",""); s = s.replaceAll("[^w]+$",""); List<String> listA = new LinkedList(Arrays.asList(s.split("w+"))); List<String> listB = new LinkedList(Arrays.asList(s.split("[^w]+",0))); listB.remove(0); int max = Integer.MIN_VALUE; for (int i=0; i<listB.size(); i++) { if (listB.get(i).length() > max) { max = listB.get(i).length(); } } if (listA.size()==0) { out.println(""); return; } for (int i=0; i<listA.size(); i++) { if (listB.get(i).length() == max) out.println(listA.get(i)); } } }