結果

問題 No.197 手品
ユーザー k_kadorak_kadora
提出日時 2015-06-15 02:48:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,145 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 77,852 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-06-27 09:52:50
合計ジャッジ時間 10,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,280 KB
testcase_01 AC 122 ms
41,176 KB
testcase_02 AC 121 ms
41,172 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 113 ms
40,156 KB
testcase_06 AC 111 ms
40,116 KB
testcase_07 AC 109 ms
39,908 KB
testcase_08 AC 123 ms
41,316 KB
testcase_09 AC 111 ms
40,144 KB
testcase_10 AC 112 ms
40,304 KB
testcase_11 AC 126 ms
41,292 KB
testcase_12 AC 126 ms
41,116 KB
testcase_13 AC 125 ms
41,244 KB
testcase_14 AC 116 ms
40,248 KB
testcase_15 AC 118 ms
40,952 KB
testcase_16 AC 112 ms
40,368 KB
testcase_17 AC 124 ms
41,272 KB
testcase_18 AC 123 ms
40,968 KB
testcase_19 AC 127 ms
41,284 KB
testcase_20 AC 124 ms
41,340 KB
testcase_21 AC 111 ms
40,308 KB
testcase_22 AC 113 ms
40,108 KB
testcase_23 AC 119 ms
41,016 KB
testcase_24 AC 125 ms
41,408 KB
testcase_25 AC 123 ms
41,252 KB
testcase_26 AC 110 ms
40,020 KB
testcase_27 AC 126 ms
41,420 KB
testcase_28 AC 124 ms
41,268 KB
testcase_29 AC 106 ms
39,928 KB
testcase_30 AC 109 ms
40,368 KB
testcase_31 AC 122 ms
40,788 KB
testcase_32 AC 122 ms
41,156 KB
testcase_33 AC 121 ms
41,164 KB
testcase_34 AC 125 ms
41,164 KB
testcase_35 AC 112 ms
40,104 KB
testcase_36 AC 108 ms
39,892 KB
testcase_37 AC 121 ms
41,224 KB
testcase_38 AC 125 ms
41,148 KB
testcase_39 AC 113 ms
40,264 KB
testcase_40 AC 114 ms
39,992 KB
testcase_41 AC 113 ms
39,932 KB
testcase_42 AC 105 ms
39,620 KB
testcase_43 WA -
testcase_44 AC 121 ms
41,424 KB
testcase_45 AC 123 ms
41,156 KB
testcase_46 AC 117 ms
40,704 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();
		if(n == 0){
			if(be.equals(af)){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}else if(n == 1){
			for(int i = 0;i<3;i++){
				if(be.charAt(i) == 'o')bo++;
				if(af.charAt(i) =='o')ao++;
			}
			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{
			System.out.println("FAILURE");
		}
	}
}
0