結果
問題 | No.342 一番ワロタww |
ユーザー | fal_rnd |
提出日時 | 2016-10-27 00:42:59 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 378 bytes |
コンパイル時間 | 2,222 ms |
コンパイル使用メモリ | 76,596 KB |
実行使用メモリ | 41,536 KB |
最終ジャッジ日時 | 2024-11-24 03:56:16 |
合計ジャッジ時間 | 4,740 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 110 ms
41,472 KB |
testcase_02 | AC | 101 ms
40,952 KB |
testcase_03 | AC | 117 ms
41,092 KB |
testcase_04 | AC | 116 ms
41,152 KB |
testcase_05 | AC | 101 ms
41,364 KB |
testcase_06 | WA | - |
testcase_07 | AC | 115 ms
41,088 KB |
testcase_08 | WA | - |
testcase_09 | AC | 117 ms
39,860 KB |
testcase_10 | AC | 112 ms
41,284 KB |
testcase_11 | AC | 116 ms
41,224 KB |
testcase_12 | AC | 112 ms
41,068 KB |
testcase_13 | AC | 116 ms
41,240 KB |
testcase_14 | WA | - |
testcase_15 | AC | 122 ms
41,124 KB |
testcase_16 | WA | - |
ソースコード
import java.util.Scanner; class A { static Scanner s = new Scanner(System.in); static String w = "w"; public static void main(String[] args) { String in = s.nextLine(); String ww = w; while(in.contains(ww+w)) { ww+=w; } String[] ss = in.split(ww); for(String s:ss) { if(!s.isEmpty()) System.out.println(s.substring(s.lastIndexOf(w)+1)); } } }