結果

問題 No.653 E869120 and Lucky Numbers
ユーザー 👑 rin204rin204
提出日時 2022-10-30 16:52:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,776 KB
最終ジャッジ日時 2024-09-13 18:24:33
合計ジャッジ時間 3,072 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,420 KB
testcase_01 AC 40 ms
58,484 KB
testcase_02 AC 39 ms
58,584 KB
testcase_03 AC 39 ms
58,976 KB
testcase_04 AC 40 ms
59,748 KB
testcase_05 AC 39 ms
58,844 KB
testcase_06 AC 47 ms
63,048 KB
testcase_07 AC 40 ms
57,584 KB
testcase_08 AC 40 ms
59,072 KB
testcase_09 AC 36 ms
52,212 KB
testcase_10 AC 36 ms
52,088 KB
testcase_11 AC 36 ms
52,944 KB
testcase_12 AC 36 ms
52,920 KB
testcase_13 AC 36 ms
53,040 KB
testcase_14 AC 36 ms
52,680 KB
testcase_15 AC 37 ms
52,204 KB
testcase_16 AC 37 ms
52,748 KB
testcase_17 AC 36 ms
53,380 KB
testcase_18 AC 38 ms
52,684 KB
testcase_19 AC 38 ms
52,332 KB
testcase_20 AC 37 ms
52,348 KB
testcase_21 AC 37 ms
51,964 KB
testcase_22 AC 37 ms
52,176 KB
testcase_23 AC 36 ms
53,544 KB
testcase_24 AC 36 ms
52,852 KB
testcase_25 AC 37 ms
52,944 KB
testcase_26 AC 36 ms
52,788 KB
testcase_27 AC 37 ms
52,192 KB
testcase_28 AC 53 ms
68,776 KB
testcase_29 AC 55 ms
68,744 KB
testcase_30 AC 48 ms
64,988 KB
testcase_31 AC 37 ms
53,444 KB
testcase_32 AC 36 ms
52,828 KB
testcase_33 AC 36 ms
51,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(map(int, input()))[::-1]
t = 2
n = len(S)
S += [0, 0, 0, 0]
for i in range(n):
    if S[i] == 0:
        break
    elif S[i] in [2, 3, 4]:
        if t == 1:
            print("No")
            exit()
        S[i] = 0
        S[i + 1] -= 1
    elif S[i] in [6, 7]:
        if i == 0:
            print("No")
            exit()
        t = 1
        S[i] = 0
    else:
        print("No")
        exit()

if all(s == 0 for s in S):
    print("Yes")
else:
    print("No")
0