結果

問題 No.653 E869120 and Lucky Numbers
ユーザー GrayCoderGrayCoder
提出日時 2018-02-25 15:12:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 839 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-26 07:00:32
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,880 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 34 ms
10,880 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 34 ms
10,880 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 34 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 32 ms
10,880 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 31 ms
10,880 KB
testcase_33 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    P = int(input())

    if P < 12:
        print('No')
        return

    p = list(map(int, str(P)[::-1]))
    if p[0] in (2, 3, 4):
        if p[-1] == 1:
            ans = case1(p[1:-1])
        else:
            ans = case2(p[1:])
    else:
        print('No')
        return
    if ans:
        print('Yes')
    else:
        print('No')

def case1(p):
    for i in p:
        if i not in (3, 4, 5):
            return 0
    return 1

def case2(p):
    flag = 0
    for i in p:
        if i in (0, 1, 2, 9):
            return 0
        if i in (3, 4, 5):
            if flag != 0:
                return 0
            flag = 1
        if i in (7, 8):
            if flag != 1:
                return 0
            flag = 2
        if i in (6, 7):
            if flag != 2:
                return 0
    return 1

main()
0