結果

問題 No.197 手品
ユーザー kuramukuramu
提出日時 2016-01-29 01:13:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 1,457 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 50,348 KB
最終ジャッジ日時 2024-07-20 03:45:53
合計ジャッジ時間 6,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,820 KB
testcase_01 AC 56 ms
50,232 KB
testcase_02 AC 57 ms
50,176 KB
testcase_03 AC 56 ms
49,820 KB
testcase_04 AC 57 ms
49,928 KB
testcase_05 AC 55 ms
50,060 KB
testcase_06 AC 56 ms
50,188 KB
testcase_07 AC 55 ms
50,216 KB
testcase_08 AC 55 ms
50,304 KB
testcase_09 AC 57 ms
50,252 KB
testcase_10 AC 56 ms
50,240 KB
testcase_11 AC 56 ms
50,248 KB
testcase_12 AC 61 ms
50,120 KB
testcase_13 AC 63 ms
50,100 KB
testcase_14 AC 59 ms
50,328 KB
testcase_15 AC 56 ms
50,148 KB
testcase_16 AC 55 ms
50,236 KB
testcase_17 AC 56 ms
50,184 KB
testcase_18 AC 55 ms
49,940 KB
testcase_19 AC 55 ms
49,856 KB
testcase_20 AC 55 ms
50,164 KB
testcase_21 AC 56 ms
49,968 KB
testcase_22 AC 56 ms
50,176 KB
testcase_23 AC 55 ms
50,040 KB
testcase_24 AC 56 ms
50,176 KB
testcase_25 AC 55 ms
50,168 KB
testcase_26 AC 55 ms
50,200 KB
testcase_27 AC 55 ms
49,856 KB
testcase_28 AC 56 ms
50,220 KB
testcase_29 AC 58 ms
49,900 KB
testcase_30 AC 57 ms
49,748 KB
testcase_31 AC 56 ms
50,168 KB
testcase_32 AC 57 ms
50,172 KB
testcase_33 AC 60 ms
50,188 KB
testcase_34 AC 57 ms
50,336 KB
testcase_35 AC 58 ms
50,248 KB
testcase_36 AC 58 ms
50,348 KB
testcase_37 AC 55 ms
49,868 KB
testcase_38 AC 55 ms
50,180 KB
testcase_39 AC 56 ms
49,756 KB
testcase_40 AC 55 ms
49,888 KB
testcase_41 AC 57 ms
49,816 KB
testcase_42 AC 56 ms
49,744 KB
testcase_43 AC 61 ms
49,912 KB
testcase_44 AC 59 ms
49,880 KB
testcase_45 AC 60 ms
49,876 KB
testcase_46 AC 62 ms
50,152 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(n==0){
	    		  if(line1.equals(line2)){
		    		  System.out.println("FAILURE");
	    		  }else{
	    			  System.out.println("SUCCESS");
	    		  }
	    	  }else if(n==1){
	    		  
	    		  if(line1.equals(line2) &&(line1.charAt(0)==line1.charAt(1) || line1.charAt(1)==line1.charAt(2)))
	    			  System.out.println("FAILURE");
	    		  else if(line1.equals(line2))
	    			  System.out.println("SUCCESS");	    		  
	    		  else if(line1.charAt(0)==line2.charAt(2)&&line1.charAt(2)==line2.charAt(0) && line1.charAt(0)!=line1.charAt(2))
	    			  System.out.println("SUCCESS");
	    		  else
	    			  System.out.println("FAILURE");
	    	  }else{
	    		  System.out.println("FAILURE");
	    	  }
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0