結果

問題 No.653 E869120 and Lucky Numbers
ユーザー 👑 rin204rin204
提出日時 2022-10-30 16:51:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,700 KB
最終ジャッジ日時 2024-07-07 08:05:18
合計ジャッジ時間 2,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,828 KB
testcase_01 AC 34 ms
58,228 KB
testcase_02 AC 33 ms
58,452 KB
testcase_03 AC 32 ms
59,916 KB
testcase_04 AC 33 ms
58,848 KB
testcase_05 AC 33 ms
59,392 KB
testcase_06 AC 51 ms
62,704 KB
testcase_07 AC 32 ms
58,508 KB
testcase_08 AC 34 ms
58,364 KB
testcase_09 AC 30 ms
53,436 KB
testcase_10 AC 31 ms
53,420 KB
testcase_11 AC 32 ms
52,584 KB
testcase_12 AC 31 ms
52,960 KB
testcase_13 AC 29 ms
53,272 KB
testcase_14 WA -
testcase_15 AC 31 ms
52,828 KB
testcase_16 AC 33 ms
52,560 KB
testcase_17 AC 32 ms
52,800 KB
testcase_18 AC 32 ms
53,824 KB
testcase_19 AC 33 ms
53,812 KB
testcase_20 AC 33 ms
52,564 KB
testcase_21 AC 31 ms
52,548 KB
testcase_22 AC 31 ms
53,284 KB
testcase_23 AC 29 ms
53,216 KB
testcase_24 AC 30 ms
53,296 KB
testcase_25 AC 32 ms
52,976 KB
testcase_26 AC 31 ms
52,672 KB
testcase_27 AC 32 ms
52,692 KB
testcase_28 AC 47 ms
68,432 KB
testcase_29 AC 46 ms
68,700 KB
testcase_30 AC 40 ms
65,396 KB
testcase_31 AC 31 ms
53,136 KB
testcase_32 AC 34 ms
52,572 KB
testcase_33 AC 34 ms
52,220 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]:
        t = 1
        S[i] = 0
    else:
        print("No")
        exit()

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