結果

問題 No.380 悪の台本
ユーザー ym678ym678
提出日時 2016-08-31 21:22:09
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,194 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 77,528 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-04-24 14:46:42
合計ジャッジ時間 5,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();

		String[] name = {"digi","petit","rabi","gema","piyo"};//TLE防止		
		
		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})$";
		
		String C = "CORRECT (maybe)";
		String W = "WRONG!";
		boolean flag = false;
		
		while(sc.hasNextLine()){
			String line = sc.nextLine();
			if(line.indexOf(' ') == -1){
				System.out.println(W);
				continue;
			}
			
			String sub = line.split(" ",2)[0];
			
			for(int i=0; i<5; i++){
				if(sub.equals(name[i])){
					flag = true;
				    if(line.matches(check[i])){	
				    	System.out.println(C);		
				        break;
				    }else{
				    	System.out.println(W);
				    	break;
				    }
				}
			}
			if(!flag){
				System.out.println(W);	
			}else{
				flag = false;
			}
		}
		String ans = sb.toString();
		System.out.println(ans);
	}
}
0