結果

問題 No.653 E869120 and Lucky Numbers
ユーザー ああいいああいい
提出日時 2022-01-09 22:14:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 954 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 62,884 KB
最終ジャッジ日時 2024-11-14 10:34:21
合計ジャッジ時間 2,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,612 KB
testcase_01 AC 40 ms
58,652 KB
testcase_02 AC 40 ms
59,936 KB
testcase_03 AC 41 ms
60,416 KB
testcase_04 AC 40 ms
58,348 KB
testcase_05 AC 40 ms
59,224 KB
testcase_06 AC 42 ms
59,904 KB
testcase_07 AC 38 ms
52,772 KB
testcase_08 AC 40 ms
59,708 KB
testcase_09 AC 37 ms
52,540 KB
testcase_10 AC 37 ms
52,336 KB
testcase_11 AC 37 ms
53,232 KB
testcase_12 AC 37 ms
53,140 KB
testcase_13 AC 38 ms
53,096 KB
testcase_14 AC 37 ms
52,472 KB
testcase_15 AC 37 ms
52,548 KB
testcase_16 AC 37 ms
52,560 KB
testcase_17 WA -
testcase_18 AC 37 ms
52,536 KB
testcase_19 AC 36 ms
52,820 KB
testcase_20 AC 37 ms
53,248 KB
testcase_21 AC 37 ms
52,704 KB
testcase_22 AC 37 ms
53,048 KB
testcase_23 AC 37 ms
52,484 KB
testcase_24 AC 36 ms
53,160 KB
testcase_25 AC 37 ms
52,216 KB
testcase_26 AC 37 ms
53,836 KB
testcase_27 AC 37 ms
53,296 KB
testcase_28 AC 44 ms
62,884 KB
testcase_29 AC 46 ms
62,824 KB
testcase_30 WA -
testcase_31 AC 38 ms
53,136 KB
testcase_32 AC 38 ms
52,000 KB
testcase_33 AC 38 ms
52,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = input()

l = list(map(int,list(p)))

import sys
if len(l) == 1:
    print('No')
    exit()
n = 'No'
y = 'Yes'
if 2 <= l[-1] <= 4:
    pass
else:
    print(n)
    exit()

if l[0] == 1:
    for i in l[1:-1]:
        if 3 <= i <= 5:
            pass
        else:
            print(n)
            exit()
    print(y)
    exit()
if p.count('8') >= 2:
    print(n)
    exit()
if p.count('8') == 1:
    i = 0
    while l[i] != 8:
        if l[i] != 6 and l[i] != 7:
            print(n)
            exit()
        i += 1
    i += 1
    for j in range(i,len(l)-1):
        if 3 <= l[j] <= 5:
            pass
        else:
            print(n)
            exit()
    print(y)
    exit()
a = p.count('6') + p.count('7')
if a == 0:
    print(n)
    exit()
    
for i in range(a):
    if l[i] != 6 and l[i] != 7:
        print(n)
        exit()
for j in range(a,len(l)-1):
    if 3 <= l[j] <= 5:
        pass
    else:
        print(n)
        exit()
print(y)
0