結果
問題 | No.380 悪の台本 |
ユーザー | jp_ste |
提出日時 | 2016-08-06 18:24:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,275 bytes |
コンパイル時間 | 2,445 ms |
コンパイル使用メモリ | 77,636 KB |
実行使用メモリ | 52,720 KB |
最終ジャッジ日時 | 2024-11-06 23:08:09 |
合計ジャッジ時間 | 5,902 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,048 KB |
testcase_01 | WA | - |
testcase_02 | AC | 133 ms
41,248 KB |
testcase_03 | AC | 130 ms
41,368 KB |
testcase_04 | AC | 331 ms
48,260 KB |
testcase_05 | AC | 457 ms
48,484 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 214 ms
42,848 KB |
testcase_09 | WA | - |
ソースコード
import java.io.IOException; import java.io.PrintWriter; import java.util.Scanner; public class Main { static Scanner scan = new Scanner(System.in); static PrintWriter out = new PrintWriter(System.out); public static void main(String[] args) throws IOException { String names[] = { "digi", "petit", "rabi", "gema", "piyo" }; String reges[] = new String[5]; reges[0] = "digi .*[nN][yY][oO][ -/:-@\\[-\\`\\{-\\~]{0,3}$"; reges[1] = "petit .*[nN][yY][uU][ -/:-@\\[-\\`\\{-\\~]{0,3}$"; reges[2] = "rabi .*[a-z0-9A-Z].*"; reges[3] = "gema .*[gG][eE][mM][aA][ -/:-@\\[-\\`\\{-\\~]{0,3}$"; reges[4] = "piyo .*[pP][yY][oO][ -/:-@\\[-\\`\\{-\\~]{0,3}$"; while(scan.hasNextLine()) { String line = scan.nextLine(); String name = line.split(" ", 2)[0]; for(int i=0; i<names.length; i++) { if(name.equals(names[i])) { if(line.matches(reges[i])) { out.println("CORRECT (maybe)"); } else { out.println("WRONG!"); } break; } } } out.flush(); } }