結果
問題 | No.380 悪の台本 |
ユーザー | hiromi_ayase |
提出日時 | 2016-06-17 22:52:37 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,234 bytes |
コンパイル時間 | 2,494 ms |
コンパイル使用メモリ | 77,268 KB |
実行使用メモリ | 47,484 KB |
最終ジャッジ日時 | 2024-11-06 22:38:04 |
合計ジャッジ時間 | 5,357 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,148 KB |
testcase_01 | WA | - |
testcase_02 | AC | 131 ms
41,088 KB |
testcase_03 | AC | 130 ms
41,152 KB |
testcase_04 | AC | 295 ms
44,644 KB |
testcase_05 | AC | 416 ms
47,484 KB |
testcase_06 | AC | 421 ms
47,456 KB |
testcase_07 | WA | - |
testcase_08 | AC | 222 ms
43,108 KB |
testcase_09 | AC | 319 ms
46,200 KB |
ソースコード
import java.util.Scanner;public class Main {private static boolean[] isMark = new boolean[256];static {for (int i = 0; i < 256; i++) {if ('0' <= i && i <= '9' || 'a' <= i && i <= 'z' || 'A' <= i && i <= 'Z') {} else {isMark[i] = true;}}}public static void main(String[] args) {Scanner sc = new Scanner(System.in);while (sc.hasNext()) {String name = sc.next();String line = sc.nextLine().toLowerCase();boolean ok = false;if (name.equals("digi")) {line = trim(line);ok = line.endsWith("nyo");} else if (name.equals("petit")) {line = trim(line);ok = line.endsWith("nyu");} else if (name.equals("gema")) {line = trim(line);ok = line.endsWith("gema");} else if (name.equals("piyo")) {line = trim(line);ok = line.endsWith("pyo");} else if (name.equals("rabi")) {for (char c : line.toCharArray()) {if (!isMark[c]) {ok = true;break;}}}System.out.println(ok ? "CORRECT (maybe)" : "WRONG!");}}private static String trim(String s) {for (int i = 0; s.length() > 0 && i < 3 && isMark[s.charAt(s.length() - 1)]; i++) {s = s.substring(0, s.length() - 1);}return s;}}