結果

問題 No.197 手品
ユーザー 37zigen37zigen
提出日時 2016-03-22 14:19:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 975 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 77,868 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-06-27 13:28:04
合計ジャッジ時間 9,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,308 KB
testcase_01 AC 132 ms
41,504 KB
testcase_02 AC 132 ms
41,140 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 115 ms
40,268 KB
testcase_06 WA -
testcase_07 AC 130 ms
41,228 KB
testcase_08 AC 129 ms
41,052 KB
testcase_09 WA -
testcase_10 AC 130 ms
41,548 KB
testcase_11 AC 111 ms
40,096 KB
testcase_12 AC 114 ms
41,380 KB
testcase_13 AC 128 ms
41,240 KB
testcase_14 AC 129 ms
41,276 KB
testcase_15 AC 130 ms
40,920 KB
testcase_16 AC 128 ms
41,428 KB
testcase_17 AC 131 ms
41,352 KB
testcase_18 AC 130 ms
41,400 KB
testcase_19 AC 127 ms
41,052 KB
testcase_20 AC 133 ms
41,436 KB
testcase_21 AC 129 ms
41,376 KB
testcase_22 AC 131 ms
41,400 KB
testcase_23 WA -
testcase_24 AC 132 ms
41,448 KB
testcase_25 AC 131 ms
41,236 KB
testcase_26 AC 133 ms
41,384 KB
testcase_27 AC 130 ms
41,172 KB
testcase_28 AC 131 ms
41,580 KB
testcase_29 AC 132 ms
41,176 KB
testcase_30 AC 132 ms
41,632 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 133 ms
41,244 KB
testcase_34 AC 132 ms
41,532 KB
testcase_35 AC 132 ms
41,432 KB
testcase_36 AC 118 ms
40,052 KB
testcase_37 AC 132 ms
41,160 KB
testcase_38 AC 131 ms
41,236 KB
testcase_39 AC 131 ms
41,296 KB
testcase_40 AC 134 ms
41,548 KB
testcase_41 AC 132 ms
41,236 KB
testcase_42 AC 132 ms
41,276 KB
testcase_43 WA -
testcase_44 AC 122 ms
41,272 KB
testcase_45 AC 131 ms
41,040 KB
testcase_46 AC 132 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder197;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String str1=sc.next();
		int n=sc.nextInt();
		String str2=sc.next();
		int cntHasCoin1=0;
		int cntHasCoin2=0;
		for(int i=0;i<3;i++){
			if(str1.charAt(i)=='o'){
				cntHasCoin1++;
			}
			if(str2.charAt(i)=='o'){
				cntHasCoin2++;
			}
		}
		if(cntHasCoin1!=cntHasCoin2){
			System.out.println("FAILURE");
		}else if(n==0){
			if(str1.equals(str2)){
				System.out.println("SUCCESS");
			}else{
				System.out.println("FAILURE");
			}
		}else if(n==1){
			if(str1.charAt(0)==str2.charAt(1)&&str1.charAt(1)==str2.charAt(0)){
				System.out.println("FAILURE");
			}else if(str1.charAt(1)==str2.charAt(2)&&str1.charAt(2)==str2.charAt(1)){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}else if(n>=2){
			System.out.println("FAILURE");
		}else{
			System.err.println("ERROR");
		}
	}
}
0