結果

問題 No.653 E869120 and Lucky Numbers
ユーザー wagashi1349
提出日時 2018-04-24 16:56:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-27 16:00:49
合計ジャッジ時間 2,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 4 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

str = input()
if len(str) == 1:
    print("No")
    exit(0)

a = int(str[0])
if a == 6 or a == 7:
    str = str[1:]
    while 1:
        a = int(str[0])
        if not(a == 6 or a == 7 or a == 8):
            str = "1" + str
            break
        str = str[1:]

if len(str) > 2:
    a = int(str[0] + str[1])
    if not (a >= 13 and a <= 15):
        print("No")
        exit(0)

for num in range(len(str)-2) :
    a = int("1" + str[num+1])
    if not (a >= 13 and a <= 15):
        print("No")
        exit(0)

a = int("1" + str[-1])
if not (a >= 12 and a <= 14):
    print("No")
else:
    print("Yes")
0