結果

問題 No.197 手品
ユーザー kuramukuramu
提出日時 2016-01-29 00:19:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,097 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 50,380 KB
最終ジャッジ日時 2024-06-27 13:16:51
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,224 KB
testcase_01 AC 52 ms
50,168 KB
testcase_02 AC 52 ms
49,768 KB
testcase_03 AC 52 ms
50,168 KB
testcase_04 AC 53 ms
50,332 KB
testcase_05 WA -
testcase_06 AC 52 ms
49,872 KB
testcase_07 AC 51 ms
50,204 KB
testcase_08 AC 51 ms
50,280 KB
testcase_09 AC 51 ms
50,168 KB
testcase_10 AC 51 ms
49,880 KB
testcase_11 AC 52 ms
49,988 KB
testcase_12 WA -
testcase_13 AC 52 ms
50,224 KB
testcase_14 WA -
testcase_15 AC 52 ms
50,224 KB
testcase_16 WA -
testcase_17 AC 53 ms
50,376 KB
testcase_18 AC 52 ms
50,104 KB
testcase_19 AC 51 ms
49,900 KB
testcase_20 AC 52 ms
50,276 KB
testcase_21 AC 52 ms
50,148 KB
testcase_22 AC 53 ms
50,208 KB
testcase_23 AC 52 ms
50,264 KB
testcase_24 AC 53 ms
49,828 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 52 ms
50,228 KB
testcase_28 AC 52 ms
50,268 KB
testcase_29 AC 52 ms
50,208 KB
testcase_30 WA -
testcase_31 AC 53 ms
50,316 KB
testcase_32 AC 52 ms
50,168 KB
testcase_33 AC 52 ms
50,236 KB
testcase_34 WA -
testcase_35 AC 52 ms
50,320 KB
testcase_36 AC 53 ms
50,200 KB
testcase_37 AC 51 ms
50,184 KB
testcase_38 WA -
testcase_39 AC 52 ms
50,024 KB
testcase_40 AC 51 ms
49,900 KB
testcase_41 AC 54 ms
50,220 KB
testcase_42 AC 53 ms
50,056 KB
testcase_43 AC 53 ms
50,308 KB
testcase_44 AC 52 ms
49,960 KB
testcase_45 AC 53 ms
50,136 KB
testcase_46 AC 55 ms
50,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  String line1 = stdReader.readLine();
	    	  int n = Integer.parseInt(stdReader.readLine());
	    	  String line2 = stdReader.readLine();
	    	  int num1 = 0;
	    	  int num2 = 0;
	    	  for(int i=0;i<3;i++){
	    		  if(line1.charAt(i) == 'o') num1++;
	    		  if(line2.charAt(i) == 'o') num2++;    		  
	    	  }
	    	  if(num1 != num2){
	    		  System.out.println("SUCCESS");
	    		  return;
	    	  }
	    	  if(line1.equals(line2)){
	    		  System.out.println("FAILURE");
	    	  }else if((line1.charAt(0)==line2.charAt(2))&&n>=2){
	    		  System.out.println("FAILURE");
	    	  }else if((line1.charAt(0)!=line2.charAt(1)||line1.charAt(1)!=line2.charAt(2))&&n>=1){
	    		  System.out.println("FAILURE");
	    	  }else System.out.println("SUCCESS");
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0