結果

問題 No.197 手品
ユーザー k_kadorak_kadora
提出日時 2015-06-15 02:50:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 1,212 bytes
コンパイル時間 4,328 ms
コンパイル使用メモリ 77,480 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-20 03:42:04
合計ジャッジ時間 11,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,060 KB
testcase_01 AC 102 ms
40,184 KB
testcase_02 AC 129 ms
41,388 KB
testcase_03 AC 101 ms
39,848 KB
testcase_04 AC 101 ms
39,960 KB
testcase_05 AC 100 ms
39,668 KB
testcase_06 AC 114 ms
41,216 KB
testcase_07 AC 100 ms
40,052 KB
testcase_08 AC 117 ms
40,928 KB
testcase_09 AC 116 ms
41,364 KB
testcase_10 AC 121 ms
40,892 KB
testcase_11 AC 117 ms
41,028 KB
testcase_12 AC 104 ms
39,916 KB
testcase_13 AC 102 ms
39,796 KB
testcase_14 AC 122 ms
41,364 KB
testcase_15 AC 126 ms
41,160 KB
testcase_16 AC 124 ms
41,188 KB
testcase_17 AC 117 ms
41,320 KB
testcase_18 AC 107 ms
39,904 KB
testcase_19 AC 118 ms
41,204 KB
testcase_20 AC 123 ms
41,372 KB
testcase_21 AC 117 ms
40,960 KB
testcase_22 AC 125 ms
41,168 KB
testcase_23 AC 129 ms
41,196 KB
testcase_24 AC 123 ms
41,168 KB
testcase_25 AC 112 ms
40,832 KB
testcase_26 AC 102 ms
39,920 KB
testcase_27 AC 106 ms
40,024 KB
testcase_28 AC 117 ms
41,200 KB
testcase_29 AC 125 ms
41,224 KB
testcase_30 AC 123 ms
41,176 KB
testcase_31 AC 121 ms
41,040 KB
testcase_32 AC 116 ms
40,852 KB
testcase_33 AC 103 ms
39,776 KB
testcase_34 AC 114 ms
41,184 KB
testcase_35 AC 116 ms
41,184 KB
testcase_36 AC 116 ms
41,284 KB
testcase_37 AC 122 ms
41,056 KB
testcase_38 AC 124 ms
41,164 KB
testcase_39 AC 123 ms
41,100 KB
testcase_40 AC 119 ms
41,084 KB
testcase_41 AC 114 ms
40,020 KB
testcase_42 AC 114 ms
40,804 KB
testcase_43 AC 122 ms
40,908 KB
testcase_44 AC 100 ms
40,072 KB
testcase_45 AC 114 ms
41,444 KB
testcase_46 AC 115 ms
41,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki197{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		String be,af;
		int n,bo=0,ao=0,posb=0,posa=0;
		be = sc.next();
		n = sc.nextInt();
		af = sc.next();
		for(int i = 0;i<3;i++){
				if(be.charAt(i) == 'o')bo++;
				if(af.charAt(i) =='o')ao++;
			}
		if(n == 0){
			if(be.equals(af)){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}else if(n == 1){
			if(ao != bo){
				System.out.println("SUCCESS");
			}else{
				if(ao == 1){
					for(int i = 0;i<3;i++){
						if(be.charAt(i) == 'o')posb = i;
						if(af.charAt(i) == 'o')posa = i;
					}
					if(posb+posa != 2){
						System.out.println("FAILURE");
					}else{
						System.out.println("SUCCESS");
					}
				}else if(ao == 2){
					for(int i = 0;i<3;i++){
						if(be.charAt(i) != 'o')posb = i;
						if(af.charAt(i) != 'o')posa = i;
					}
					if(posb+posa != 2){
						System.out.println("FAILURE");
					}else{
						System.out.println("SUCCESS");
					}
				}else{
					System.out.println("FAILURE");
				}
			}
		}else{
			if(ao == bo){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}
	}
}
0