結果

問題 No.197 手品
ユーザー 37zigen37zigen
提出日時 2016-03-22 14:18:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 954 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-06-27 13:27:36
合計ジャッジ時間 9,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
41,124 KB
testcase_02 AC 125 ms
41,264 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 126 ms
41,288 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 125 ms
41,176 KB
testcase_09 WA -
testcase_10 AC 126 ms
41,388 KB
testcase_11 AC 126 ms
41,184 KB
testcase_12 AC 114 ms
41,372 KB
testcase_13 AC 124 ms
41,328 KB
testcase_14 AC 121 ms
40,932 KB
testcase_15 AC 126 ms
41,192 KB
testcase_16 AC 114 ms
40,720 KB
testcase_17 AC 114 ms
41,228 KB
testcase_18 AC 127 ms
41,208 KB
testcase_19 AC 126 ms
41,388 KB
testcase_20 AC 114 ms
40,852 KB
testcase_21 AC 122 ms
41,244 KB
testcase_22 AC 131 ms
41,232 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 115 ms
40,408 KB
testcase_36 AC 124 ms
41,040 KB
testcase_37 AC 121 ms
41,008 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 125 ms
41,380 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 125 ms
41,352 KB
testcase_45 AC 117 ms
41,472 KB
testcase_46 AC 124 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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("SUCCESS");
			}else if(str1.charAt(1)==str2.charAt(2)&&str1.charAt(2)==str2.charAt(1)){
				System.out.println("SUCCESS");
			}else{
				System.out.println("FAILURE");
			}
		}else if(n>=2){
			System.out.println("FAILURE");
		}else{
			System.err.println("ERROR");
		}
	}
}
0