結果

問題 No.653 E869120 and Lucky Numbers
ユーザー convexineqconvexineq
提出日時 2021-03-12 21:04:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 664 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-04-22 11:40:51
合計ジャッジ時間 2,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 43 ms
58,368 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 38 ms
51,584 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 37 ms
51,584 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 WA -
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 39 ms
51,840 KB
testcase_20 AC 39 ms
52,352 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 38 ms
51,712 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 37 ms
51,840 KB
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 81 ms
62,464 KB
testcase_29 AC 55 ms
62,324 KB
testcase_30 AC 46 ms
60,928 KB
testcase_31 AC 38 ms
51,968 KB
testcase_32 AC 38 ms
51,712 KB
testcase_33 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def No():
    print("No")
    exit()

p = input()
c = 0
fin = 0
L = len(p)
for j in range(L)[::-1]:
    i = int(p[j])
    if c==0:
        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==0:
                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()

print("Yes" if c==0 else "No")
0