結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,416 KB
testcase_01 AC 113 ms
40,404 KB
testcase_02 AC 124 ms
41,584 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 125 ms
41,560 KB
testcase_06 AC 125 ms
41,384 KB
testcase_07 AC 107 ms
40,272 KB
testcase_08 AC 122 ms
41,344 KB
testcase_09 AC 110 ms
40,020 KB
testcase_10 AC 114 ms
40,300 KB
testcase_11 AC 125 ms
41,360 KB
testcase_12 AC 125 ms
41,448 KB
testcase_13 AC 125 ms
41,396 KB
testcase_14 AC 115 ms
40,000 KB
testcase_15 AC 123 ms
41,156 KB
testcase_16 AC 120 ms
41,168 KB
testcase_17 AC 112 ms
40,236 KB
testcase_18 AC 126 ms
41,312 KB
testcase_19 AC 123 ms
41,412 KB
testcase_20 AC 122 ms
41,484 KB
testcase_21 AC 125 ms
41,196 KB
testcase_22 AC 123 ms
41,140 KB
testcase_23 WA -
testcase_24 AC 122 ms
41,464 KB
testcase_25 AC 124 ms
41,472 KB
testcase_26 AC 114 ms
40,536 KB
testcase_27 AC 122 ms
41,152 KB
testcase_28 AC 123 ms
41,000 KB
testcase_29 AC 121 ms
40,044 KB
testcase_30 AC 122 ms
40,740 KB
testcase_31 WA -
testcase_32 AC 128 ms
41,580 KB
testcase_33 AC 133 ms
41,192 KB
testcase_34 AC 136 ms
41,280 KB
testcase_35 AC 135 ms
41,312 KB
testcase_36 AC 127 ms
41,148 KB
testcase_37 AC 124 ms
41,480 KB
testcase_38 AC 117 ms
40,764 KB
testcase_39 AC 127 ms
41,300 KB
testcase_40 AC 117 ms
40,308 KB
testcase_41 AC 113 ms
40,180 KB
testcase_42 AC 127 ms
41,228 KB
testcase_43 WA -
testcase_44 AC 108 ms
40,168 KB
testcase_45 AC 122 ms
41,372 KB
testcase_46 AC 109 ms
39,940 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 == 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