結果

問題 No.197 手品
ユーザー kuramukuramu
提出日時 2016-01-29 00:32:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,138 bytes
コンパイル時間 2,797 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 37,092 KB
最終ジャッジ日時 2024-06-27 13:17:04
合計ジャッジ時間 5,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 51 ms
36,984 KB
testcase_02 AC 51 ms
36,920 KB
testcase_03 AC 50 ms
36,492 KB
testcase_04 AC 49 ms
37,040 KB
testcase_05 AC 51 ms
36,996 KB
testcase_06 AC 51 ms
36,848 KB
testcase_07 AC 50 ms
36,848 KB
testcase_08 AC 51 ms
36,620 KB
testcase_09 AC 51 ms
36,508 KB
testcase_10 AC 51 ms
36,980 KB
testcase_11 AC 52 ms
36,988 KB
testcase_12 AC 50 ms
36,988 KB
testcase_13 AC 51 ms
36,688 KB
testcase_14 AC 49 ms
36,780 KB
testcase_15 AC 52 ms
36,996 KB
testcase_16 AC 49 ms
36,940 KB
testcase_17 AC 49 ms
36,496 KB
testcase_18 AC 50 ms
36,864 KB
testcase_19 AC 49 ms
36,812 KB
testcase_20 AC 50 ms
36,896 KB
testcase_21 AC 49 ms
36,928 KB
testcase_22 AC 49 ms
36,724 KB
testcase_23 AC 52 ms
36,888 KB
testcase_24 AC 51 ms
36,752 KB
testcase_25 AC 50 ms
36,968 KB
testcase_26 AC 50 ms
36,500 KB
testcase_27 AC 50 ms
36,916 KB
testcase_28 AC 51 ms
36,616 KB
testcase_29 AC 50 ms
36,504 KB
testcase_30 AC 49 ms
37,004 KB
testcase_31 AC 50 ms
36,896 KB
testcase_32 AC 50 ms
36,916 KB
testcase_33 AC 50 ms
36,672 KB
testcase_34 AC 50 ms
36,940 KB
testcase_35 AC 50 ms
37,044 KB
testcase_36 AC 50 ms
36,988 KB
testcase_37 AC 50 ms
36,488 KB
testcase_38 AC 51 ms
37,016 KB
testcase_39 AC 51 ms
37,092 KB
testcase_40 AC 52 ms
36,488 KB
testcase_41 AC 51 ms
36,816 KB
testcase_42 WA -
testcase_43 AC 51 ms
36,988 KB
testcase_44 AC 50 ms
36,892 KB
testcase_45 AC 50 ms
36,804 KB
testcase_46 AC 51 ms
36,936 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.charAt(0)==line2.charAt(2)&&line1.charAt(2)==line2.charAt(0)) 
	    			  System.out.println("SUCCESS");
	    		  else
	    			  System.out.println("FAILURE");
	    	  }else{
	    		  System.out.println("FAILURE");
	    	  }
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0