結果

問題 No.653 E869120 and Lucky Numbers
ユーザー tentententen
提出日時 2020-09-05 05:56:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,216 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 55,828 KB
最終ジャッジ日時 2024-09-13 18:21:59
合計ジャッジ時間 7,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,124 KB
testcase_01 AC 124 ms
52,692 KB
testcase_02 AC 136 ms
54,064 KB
testcase_03 AC 142 ms
53,928 KB
testcase_04 AC 135 ms
53,964 KB
testcase_05 AC 134 ms
53,884 KB
testcase_06 AC 147 ms
54,132 KB
testcase_07 AC 130 ms
53,984 KB
testcase_08 AC 141 ms
54,144 KB
testcase_09 AC 127 ms
53,996 KB
testcase_10 AC 127 ms
53,784 KB
testcase_11 AC 126 ms
53,880 KB
testcase_12 AC 126 ms
54,036 KB
testcase_13 AC 127 ms
54,136 KB
testcase_14 AC 126 ms
53,748 KB
testcase_15 AC 129 ms
53,604 KB
testcase_16 AC 126 ms
54,028 KB
testcase_17 AC 128 ms
54,124 KB
testcase_18 AC 129 ms
54,096 KB
testcase_19 AC 129 ms
54,388 KB
testcase_20 AC 125 ms
53,708 KB
testcase_21 AC 126 ms
54,004 KB
testcase_22 AC 125 ms
53,924 KB
testcase_23 AC 127 ms
54,088 KB
testcase_24 AC 123 ms
53,860 KB
testcase_25 AC 125 ms
54,000 KB
testcase_26 AC 125 ms
54,248 KB
testcase_27 AC 125 ms
53,984 KB
testcase_28 AC 148 ms
53,944 KB
testcase_29 AC 149 ms
54,124 KB
testcase_30 AC 148 ms
54,216 KB
testcase_31 AC 123 ms
54,076 KB
testcase_32 AC 125 ms
55,828 KB
testcase_33 AC 122 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	char[] arr = sc.next().toCharArray();
    	int length = arr.length;
    	if (arr[length - 1] < '2' || arr[length - 1] > '4') {
    	    System.out.println("No");
    	    return;
    	}
    	boolean flag = false;
    	for (int i = length - 2; i >= 1; i--) {
    	    if (flag) {
    	        if (arr[i] < '6' || arr[i] > '7') {
    	            System.out.println("No");
    	            return;
    	        }
    	    } else {
    	        if (arr[i] >= '3' && arr[i] <= '5') {
    	            continue;
    	        } else if (arr[i] >= '7' && arr[i] <= '8') {
    	            flag = true;
    	        } else {
    	            System.out.println("No");
    	            return;
    	        }
    	    }
    	}
    	if (flag) {
	        if (arr[0] < '6' || arr[0] > '7') {
	            System.out.println("No");
	        } else {
	            System.out.println("Yes");
	        }
    	} else {
    	    if (arr[0] == '1' || arr[0] == '7' || arr[0] == '8') {
	            System.out.println("Yes");
    	    } else {
	            System.out.println("No");
    	    }
    	}
	}
}
0