結果
問題 | No.380 悪の台本 |
ユーザー | ym678 |
提出日時 | 2016-08-31 19:04:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 974 ms / 1,000 ms |
コード長 | 1,029 bytes |
コンパイル時間 | 2,329 ms |
コンパイル使用メモリ | 74,388 KB |
実行使用メモリ | 54,048 KB |
最終ジャッジ日時 | 2024-11-06 23:11:31 |
合計ジャッジ時間 | 6,804 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
40,972 KB |
testcase_01 | AC | 141 ms
40,836 KB |
testcase_02 | AC | 129 ms
41,376 KB |
testcase_03 | AC | 132 ms
41,212 KB |
testcase_04 | AC | 407 ms
48,352 KB |
testcase_05 | AC | 606 ms
48,844 KB |
testcase_06 | AC | 598 ms
47,972 KB |
testcase_07 | AC | 974 ms
54,048 KB |
testcase_08 | AC | 231 ms
42,624 KB |
testcase_09 | AC | 443 ms
47,792 KB |
ソースコード
import java.util.Scanner; import java.util.regex.Pattern; import java.util.regex.Matcher;; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] check = new String[5]; check[0] = "digi .*[nN][yY][oO]([^a-zA-Z0-9]{0,3})$"; check[1] = "petit .*[nN][yY][uU]([^a-zA-Z0-9]{0,3})$"; check[2] = "rabi .*[a-zA-Z0-9].*"; check[3] = "gema .*[gG][eE][mM][aA]([^a-zA-Z0-9]{0,3})$"; check[4] = "piyo .*[pP][yY][oO]([^a-zA-Z0-9]{0,3})$"; boolean flag = false; while(sc.hasNextLine()){ String line = sc.nextLine(); if(line.indexOf(' ') == -1){ System.out.println("WRONG!"); continue; } for(int i=0; i<5; i++){ Pattern p = Pattern.compile(check[i]); Matcher m = p.matcher(line); boolean b = m.matches(); if(b){ flag = true; System.out.println("CORRECT (maybe)"); break; } } if(!flag){ System.out.println("WRONG!"); }else{ flag = false; } } sc.close(); } }