結果

問題 No.653 E869120 and Lucky Numbers
ユーザー convexineqconvexineq
提出日時 2021-03-12 21:19:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 66,984 KB
最終ジャッジ日時 2024-09-13 18:23:17
合計ジャッジ時間 2,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,352 KB
testcase_01 AC 49 ms
62,240 KB
testcase_02 AC 44 ms
59,352 KB
testcase_03 AC 51 ms
63,368 KB
testcase_04 AC 46 ms
59,448 KB
testcase_05 AC 47 ms
61,096 KB
testcase_06 AC 48 ms
60,824 KB
testcase_07 AC 38 ms
52,812 KB
testcase_08 AC 50 ms
63,708 KB
testcase_09 AC 38 ms
51,880 KB
testcase_10 AC 37 ms
52,824 KB
testcase_11 AC 38 ms
52,308 KB
testcase_12 AC 37 ms
52,192 KB
testcase_13 AC 37 ms
53,316 KB
testcase_14 AC 38 ms
53,184 KB
testcase_15 AC 38 ms
53,768 KB
testcase_16 AC 38 ms
52,976 KB
testcase_17 AC 37 ms
52,956 KB
testcase_18 AC 38 ms
53,576 KB
testcase_19 AC 37 ms
52,768 KB
testcase_20 AC 38 ms
52,680 KB
testcase_21 AC 38 ms
53,492 KB
testcase_22 AC 38 ms
52,540 KB
testcase_23 AC 38 ms
53,616 KB
testcase_24 AC 39 ms
54,028 KB
testcase_25 AC 38 ms
53,876 KB
testcase_26 AC 40 ms
52,536 KB
testcase_27 AC 38 ms
53,008 KB
testcase_28 AC 54 ms
64,668 KB
testcase_29 AC 55 ms
66,984 KB
testcase_30 AC 54 ms
64,960 KB
testcase_31 AC 39 ms
52,124 KB
testcase_32 AC 39 ms
52,704 KB
testcase_33 AC 38 ms
52,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(p):
    def No():
        nonlocal ans
        ans = "No"
        #print("No")
        #exit()
    
    if all(ai=="6" or ai=="7" for ai in p): return "No"
    
    p = "0"+p
    c = 0
    fin = 0
    ans = "Yes"
    L = len(p)
    for j in range(L)[::-1]:
        i = int(p[j])
        if c==0:
            if i==0:
                if j == 0:
                    break
                else:
                    No()
            if i == 6 or i == 7:
                fin = 1
                c = 0
            elif i == 2 or i == 3 or i == 4:
                if fin: No()
                c = 1
            else:
                No()
        elif c==1:
            if i==1:
                if j==1:
                    c = 0
                    break
                else:
                    No()
            elif i == 7 or i == 8:
                fin = 1
                c = 0
            elif i == 3 or i == 4 or i == 5:
                if fin: No()
                c = 1
            else:
                No()
    return ans

q = [6,7]
for i in q:
    if i > 10000: break
    q += [i*10+6,i*10+7]

def guchoku(p):
    L = len(p)
    p = int(p)
    for i in q:
        for j in q:
            if i+j==p:
                return "Yes"
    return "No"

p = input()
print(solve(p))
0