結果

問題 No.653 E869120 and Lucky Numbers
ユーザー eessmmnn52eessmmnn52
提出日時 2018-05-31 09:29:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,645 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 79,812 KB
実行使用メモリ 57,276 KB
最終ジャッジ日時 2024-06-30 08:30:17
合計ジャッジ時間 8,526 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,376 KB
testcase_01 AC 142 ms
41,164 KB
testcase_02 AC 145 ms
42,564 KB
testcase_03 AC 171 ms
45,356 KB
testcase_04 AC 154 ms
44,256 KB
testcase_05 AC 155 ms
45,380 KB
testcase_06 WA -
testcase_07 AC 140 ms
42,252 KB
testcase_08 AC 168 ms
45,892 KB
testcase_09 AC 125 ms
41,312 KB
testcase_10 AC 114 ms
40,264 KB
testcase_11 AC 129 ms
41,140 KB
testcase_12 AC 131 ms
41,272 KB
testcase_13 AC 134 ms
41,412 KB
testcase_14 AC 127 ms
41,284 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 131 ms
41,540 KB
testcase_18 AC 130 ms
41,328 KB
testcase_19 AC 127 ms
41,152 KB
testcase_20 AC 128 ms
41,636 KB
testcase_21 AC 129 ms
41,052 KB
testcase_22 AC 131 ms
41,272 KB
testcase_23 AC 130 ms
41,416 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 213 ms
45,800 KB
testcase_31 AC 129 ms
41,184 KB
testcase_32 AC 128 ms
41,240 KB
testcase_33 AC 125 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        String p = sc.next();
        StringBuffer buf = new StringBuffer(p);
        String revStr = buf.reverse().toString(); // pを反転

        String x = "";
        String y = "";
        for(int i = 0; i < revStr.length(); i++){
        	if(i == 0){
        		if(revStr.substring(i, i + 1).contains("2")){
        			x += "6";
        			y += "6";
        		}else if(revStr.substring(i, i + 1).contains("3")){
        			x += "7";
        			y += "6";
        		}else if(revStr.substring(i, i + 1).contains("4")){
        			x += "7";
        			y += "7";
        		}else{
        			System.out.println("No");
        			return;
        		}
        	}else if(i > 0){
        		if(revStr.substring(i, i + 1).contains("8")){
        			x += "7";
        		}else if(revStr.substring(i, i + 1).contains("7")){
        			x += "6";
        		}else if(revStr.substring(i, i + 1).contains("5")){
        			x += "7";
        			y += "7";
        		}else if(revStr.substring(i, i + 1).contains("4")){
        			x += "7";
        			y += "6";
        		}else if(revStr.substring(i, i + 1).contains("3")){
        			x += "6";
        			y += "6";
        		}else if(revStr.substring(i, i + 1).contains("1")){
        		}else{
        			System.out.println("No");
        			return;
        		}
        	}

        }
// 検証用
//		System.out.println(x);
//		System.out.println(y);

		System.out.println("Yes");
    }
}
0