結果

問題 No.653 E869120 and Lucky Numbers
ユーザー kohei2019kohei2019
提出日時 2022-03-02 01:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 63,012 KB
最終ジャッジ日時 2024-09-13 18:24:18
合計ジャッジ時間 2,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,012 KB
testcase_01 AC 38 ms
53,680 KB
testcase_02 AC 38 ms
53,128 KB
testcase_03 AC 37 ms
52,064 KB
testcase_04 AC 37 ms
52,436 KB
testcase_05 AC 37 ms
53,136 KB
testcase_06 AC 37 ms
52,768 KB
testcase_07 AC 41 ms
53,648 KB
testcase_08 AC 37 ms
51,884 KB
testcase_09 AC 38 ms
52,544 KB
testcase_10 AC 38 ms
52,000 KB
testcase_11 AC 38 ms
52,672 KB
testcase_12 AC 37 ms
52,388 KB
testcase_13 AC 38 ms
52,120 KB
testcase_14 AC 38 ms
52,076 KB
testcase_15 AC 37 ms
53,488 KB
testcase_16 AC 37 ms
52,124 KB
testcase_17 AC 37 ms
52,988 KB
testcase_18 AC 38 ms
53,556 KB
testcase_19 AC 37 ms
52,880 KB
testcase_20 AC 37 ms
53,420 KB
testcase_21 AC 37 ms
52,568 KB
testcase_22 AC 37 ms
52,468 KB
testcase_23 AC 37 ms
52,808 KB
testcase_24 AC 37 ms
53,032 KB
testcase_25 AC 37 ms
53,976 KB
testcase_26 AC 37 ms
52,208 KB
testcase_27 AC 37 ms
52,540 KB
testcase_28 AC 47 ms
63,012 KB
testcase_29 AC 48 ms
62,864 KB
testcase_30 AC 46 ms
61,604 KB
testcase_31 AC 37 ms
52,756 KB
testcase_32 AC 38 ms
53,160 KB
testcase_33 AC 37 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = input()
pi = p[::-1]
k = 0
add = [12,13,14]
for i in range(len(p)):
    f = False
    for a in add:
        i0 = (a+k)%10
        i1 = (a+k)//10
        if str(i0) == pi[i]:
            f = True
            k = i1
            break
    if f:
        continue
    ind = i
    break
if pi[i] == '1' and i == len(p)-1:
    print('Yes')
    exit()
if (pi[i] == '8' or pi[i] == '7') and (pi[i+1:].count('7')+pi[i+1:].count('6'))==len(p)-i-1:
    print('Yes')
else:
    print('No')
0