結果

問題 No.197 手品
ユーザー 37zigen37zigen
提出日時 2016-03-22 14:21:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 975 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 77,092 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-07-20 03:48:12
合計ジャッジ時間 9,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,804 KB
testcase_01 AC 135 ms
41,104 KB
testcase_02 AC 128 ms
41,064 KB
testcase_03 AC 118 ms
41,572 KB
testcase_04 AC 115 ms
40,928 KB
testcase_05 AC 110 ms
39,892 KB
testcase_06 AC 113 ms
41,288 KB
testcase_07 AC 113 ms
40,684 KB
testcase_08 AC 125 ms
41,148 KB
testcase_09 AC 129 ms
41,288 KB
testcase_10 AC 132 ms
41,820 KB
testcase_11 AC 109 ms
39,792 KB
testcase_12 AC 125 ms
40,936 KB
testcase_13 AC 125 ms
41,308 KB
testcase_14 AC 111 ms
40,156 KB
testcase_15 AC 125 ms
41,172 KB
testcase_16 AC 123 ms
40,696 KB
testcase_17 AC 123 ms
41,332 KB
testcase_18 AC 120 ms
41,088 KB
testcase_19 AC 122 ms
41,392 KB
testcase_20 AC 110 ms
40,592 KB
testcase_21 AC 112 ms
40,940 KB
testcase_22 AC 122 ms
41,176 KB
testcase_23 AC 126 ms
41,340 KB
testcase_24 AC 122 ms
41,372 KB
testcase_25 AC 108 ms
39,808 KB
testcase_26 AC 120 ms
41,332 KB
testcase_27 AC 123 ms
41,088 KB
testcase_28 AC 121 ms
41,336 KB
testcase_29 AC 118 ms
41,268 KB
testcase_30 AC 121 ms
41,336 KB
testcase_31 AC 108 ms
39,792 KB
testcase_32 AC 125 ms
41,192 KB
testcase_33 AC 108 ms
39,772 KB
testcase_34 AC 117 ms
40,928 KB
testcase_35 AC 116 ms
40,868 KB
testcase_36 AC 116 ms
40,956 KB
testcase_37 AC 118 ms
41,160 KB
testcase_38 AC 119 ms
40,916 KB
testcase_39 AC 121 ms
41,044 KB
testcase_40 AC 123 ms
41,160 KB
testcase_41 AC 120 ms
41,020 KB
testcase_42 AC 120 ms
41,480 KB
testcase_43 AC 121 ms
40,956 KB
testcase_44 AC 116 ms
41,044 KB
testcase_45 AC 121 ms
41,324 KB
testcase_46 AC 104 ms
39,904 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("SUCCESS");
		}else if(n==0){
			if(str1.equals(str2)){
				System.out.println("FAILURE");
			}else{
				System.out.println("SUCCESS");
			}
		}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