結果

問題 No.653 E869120 and Lucky Numbers
ユーザー ああいいああいい
提出日時 2022-01-09 22:28:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 992 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 63,144 KB
最終ジャッジ日時 2024-11-14 10:34:43
合計ジャッジ時間 2,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,312 KB
testcase_01 AC 41 ms
58,904 KB
testcase_02 AC 42 ms
60,244 KB
testcase_03 AC 42 ms
59,628 KB
testcase_04 AC 41 ms
59,880 KB
testcase_05 AC 40 ms
59,704 KB
testcase_06 AC 45 ms
61,556 KB
testcase_07 AC 39 ms
53,948 KB
testcase_08 AC 41 ms
58,976 KB
testcase_09 AC 38 ms
51,996 KB
testcase_10 AC 38 ms
52,708 KB
testcase_11 AC 37 ms
52,956 KB
testcase_12 AC 38 ms
52,608 KB
testcase_13 AC 38 ms
52,956 KB
testcase_14 AC 38 ms
52,504 KB
testcase_15 AC 39 ms
52,388 KB
testcase_16 AC 38 ms
52,544 KB
testcase_17 WA -
testcase_18 AC 38 ms
53,840 KB
testcase_19 AC 38 ms
52,544 KB
testcase_20 AC 37 ms
52,888 KB
testcase_21 AC 38 ms
53,204 KB
testcase_22 AC 37 ms
52,360 KB
testcase_23 AC 38 ms
53,488 KB
testcase_24 AC 38 ms
53,028 KB
testcase_25 AC 38 ms
53,936 KB
testcase_26 AC 38 ms
51,948 KB
testcase_27 AC 37 ms
53,084 KB
testcase_28 AC 46 ms
63,144 KB
testcase_29 AC 46 ms
62,200 KB
testcase_30 WA -
testcase_31 AC 39 ms
53,664 KB
testcase_32 AC 38 ms
52,332 KB
testcase_33 AC 38 ms
52,636 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()
if l[a] == 6:
    print(n)
    exit()
for j in range(a,len(l)-1):
    if 3 <= l[j] <= 5:
        pass
    else:
        print(n)
        exit()
print(y)
0